Blame view

src/pages/about/index.tsx 186 Bytes
calmound authored
1
2
3
4
5
6
7
8
9
10
import React from 'react';
import styles from './index.less';

export default function Page() {
  return (
    <div>
      <h1 className={styles.title}>Page index</h1>
    </div>
  );
}