12 lines
138 B
TypeScript
Raw Normal View History

2023-05-15 08:51:32 +08:00
import React from 'react'
type Props = {}
const index = (props: Props) => {
return (
<div>index</div>
)
}
export default index