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