Files
fe_portal_frontend/src/pages/index/index.tsx

10 lines
132 B
TypeScript
Raw Normal View History

import React from 'react';
const IndexPage:React.FC = () => {
return (
<div>IndexPage</div>
)
}
export default IndexPage;