index.tsx 138 Bytes
import React from 'react'

type Props = {}

const index = (props: Props) => {
  return (
    <div>index</div>
  )
}

export default index