mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 13:00:39 +03:00
9 lines
175 B
TypeScript
9 lines
175 B
TypeScript
function HomePage() {
|
|
return (
|
|
<div className='flex flex-col items-center justify-center w-full py-2'>
|
|
<p>Home page</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default HomePage; |