icns-frontend/pages/index.tsx

10 lines
186 B
TypeScript
Raw Normal View History

2022-11-30 09:58:19 +00:00
import styles from "../styles/Home.module.css";
2022-11-30 08:11:45 +00:00
export default function Home() {
return (
<div className={styles.container}>
2022-11-30 09:58:19 +00:00
<a href="/api/auth">login</a>
2022-11-30 08:11:45 +00:00
</div>
2022-11-30 09:58:19 +00:00
);
2022-11-30 08:11:45 +00:00
}