10 lines
109 B
TypeScript
10 lines
109 B
TypeScript
|
|
import React from 'react'
|
||
|
|
|
||
|
|
const index = () => {
|
||
|
|
return (
|
||
|
|
<div>index</div>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default index
|