index.tsx 176 B

12345678910
  1. import React from 'react';
  2. import styles from './index.less';
  3. export default () => {
  4. return (
  5. <div>
  6. <h1 className={styles.title}>Page index</h1>
  7. </div>
  8. );
  9. }