10 lines
124 B
TypeScript
10 lines
124 B
TypeScript
import React from 'react'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main>
|
|
<h1>Index.ts</h1>
|
|
</main>
|
|
)
|
|
}
|