mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-29 13:52:46 -07:00
refactor: packages folder
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
import * as React from 'react'
|
||||
|
||||
export default function Route(): JSX.Element {
|
||||
return <h1>Test route</h1>
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
import * as React from 'react'
|
||||
|
||||
function PostsRoute() {
|
||||
return <h1>Post route</h1>
|
||||
}
|
||||
|
||||
export default PostsRoute
|
||||
@@ -0,0 +1,4 @@
|
||||
import * as React from 'react'
|
||||
import { ImportedRoute } from '../shared/imported'
|
||||
|
||||
export default ImportedRoute
|
||||
Reference in New Issue
Block a user