9 lines
193 B
TypeScript
9 lines
193 B
TypeScript
export default function Home() {
|
|
return (
|
|
<main style={{ padding: '2rem', fontFamily: 'system-ui' }}>
|
|
<h1>Reckue Dev</h1>
|
|
<p>Platform is starting up...</p>
|
|
</main>
|
|
);
|
|
}
|