mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-18 20:09:25 +00:00
22 lines
No EOL
495 B
TypeScript
22 lines
No EOL
495 B
TypeScript
import React from 'react'
|
|
import { useRouter } from 'next/router'
|
|
import Layout from '../../components/ui/layout'
|
|
import { Title } from '../../components/ui/styles/title'
|
|
import { Header } from '../../components/ui/header'
|
|
|
|
const OrgHome = () => {
|
|
const router = useRouter()
|
|
const { orgslug } = router.query
|
|
|
|
return (
|
|
<div>
|
|
<Layout title="Index">
|
|
<Header></Header>
|
|
<Title>Welcome {orgslug} 👋🏻</Title>
|
|
</Layout>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
|
|
export default OrgHome; |