Placeholder page

This commit is contained in:
Scald 2023-05-15 08:20:25 +05:30
parent 89b2cefe5c
commit 6603b14d04
No known key found for this signature in database
GPG Key ID: 39E71519BFF23499
2 changed files with 14 additions and 0 deletions

13
src/ui/pages/Home.tsx Normal file
View File

@ -0,0 +1,13 @@
import React from "react";
class Home extends React.Component {
render() {
return (
<div className="Home">
<p>Home</p>
</div>
);
}
}
export default Home;

View File

@ -20,6 +20,7 @@
"paths": {
"@app/*": ["src/*"],
"@components/*": ["src/ui/components/*"],
"@pages/*": ["src/ui/pages/*"],
"@css/*": ["src/css/*"],
}
},