12 lines
171 B
TypeScript
12 lines
171 B
TypeScript
import { useState } from "react";
|
|
|
|
export const HomePage = () => {
|
|
const [test, setTest] = useState();
|
|
|
|
return (
|
|
<div>
|
|
<h1>Home page</h1>
|
|
</div>
|
|
);
|
|
};
|