10 lines
132 B
TypeScript
10 lines
132 B
TypeScript
![]() |
|
||
|
import React from 'react';
|
||
|
const IndexPage:React.FC = () => {
|
||
|
return (
|
||
|
<div>IndexPage</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
|
||
|
export default IndexPage;
|