13 lines
198 B
TypeScript
13 lines
198 B
TypeScript
interface MainViewProps {
|
|
// add props here
|
|
}
|
|
|
|
function MainView(props: MainViewProps) {
|
|
return (
|
|
<div>
|
|
<h2>MainView</h2>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default MainView; |