mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2026-01-15 12:15:02 +00:00
7 lines
174 B
TypeScript
7 lines
174 B
TypeScript
import type { ReactElement } from 'react';
|
|
import Title from 'styles/generic/Title';
|
|
|
|
export default function Home(): ReactElement {
|
|
return <Title>Hello, world!</Title>;
|
|
}
|