9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
|
|
export default function InitPage() {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<h1>Initialization Page</h1>
|
||
|
|
<p>Welcome to the initialization page. Please follow the instructions to set up your application.</p>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|