You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.tsx 138B

2 years ago
1234567891011
  1. import React from 'react'
  2. type Props = {}
  3. const index = (props: Props) => {
  4. return (
  5. <div>index</div>
  6. )
  7. }
  8. export default index