Added Routes

This commit is contained in:
2022-09-03 15:56:34 +02:00
parent e648d960e5
commit d9e6823a34
8 changed files with 96 additions and 9 deletions

View File

@@ -0,0 +1,13 @@
interface MainViewProps {
// add props here
}
function MainView(props: MainViewProps) {
return (
<div>
<h2>MainView</h2>
</div>
)
}
export default MainView;