5 lines
136 B
TypeScript
5 lines
136 B
TypeScript
|
import styles from '../styles/home.module.css';
|
||
|
|
||
|
export default function Index() {
|
||
|
return <main className={styles.test}>TEST</main>;
|
||
|
}
|