mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-28 03:29:25 +01:00
10 lines
180 B
TypeScript
10 lines
180 B
TypeScript
import AppLayout from '~/layouts/AppLayout'
|
|
|
|
export default function About() {
|
|
return (
|
|
<AppLayout>
|
|
<div className="p-2">Hello from About!</div>
|
|
</AppLayout>
|
|
)
|
|
}
|