12 lines
149 B
TypeScript
12 lines
149 B
TypeScript
|
|
import React from 'react'
|
||
|
|
|
||
|
|
type Props = {}
|
||
|
|
|
||
|
|
const page = (props: Props) => {
|
||
|
|
return (
|
||
|
|
<div>dataset detail api</div>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default page
|