11 lines
130 B
TypeScript
11 lines
130 B
TypeScript
import type { FC } from 'react';
|
|
|
|
const Index: FC = () => {
|
|
|
|
return (
|
|
<div>/teacher/um</div>
|
|
);
|
|
};
|
|
|
|
export default Index;
|