mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-30 22:32:47 -07:00
chore: add examples folder to workspaces and make examples packages name unique (#125)
This commit is contained in:
committed by
GitHub
parent
56c31f0204
commit
89d7a2c740
@@ -0,0 +1,14 @@
|
||||
import type { ReactNode, JSX } from 'react'
|
||||
import { MDXProvider } from '@mdx-js/react'
|
||||
|
||||
interface RootRouteProps {
|
||||
children: ReactNode
|
||||
}
|
||||
|
||||
export default function RootRoute({ children }: RootRouteProps): JSX.Element {
|
||||
return (
|
||||
<main className="main">
|
||||
<MDXProvider components={{}}>{children}</MDXProvider>
|
||||
</main>
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
# Index page
|
||||
Reference in New Issue
Block a user