mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
13 lines
No EOL
276 B
TypeScript
13 lines
No EOL
276 B
TypeScript
import React from 'react'
|
|
import Layout from '../../components/ui/layout'
|
|
import { Title } from '../../components/ui/styles/title'
|
|
|
|
const Organizations = () => {
|
|
return (
|
|
<Layout>
|
|
<Title>New Organization</Title>
|
|
</Layout>
|
|
)
|
|
}
|
|
|
|
export default Organizations |