Files
nextjs/app/page.tsx

9 lines
105 B
TypeScript
Raw Permalink Normal View History

2024-12-16 13:30:44 +05:30
import React from 'react'
2024-12-14 14:48:33 +05:30
2024-12-16 13:30:44 +05:30
const page = () => {
2024-12-14 14:48:33 +05:30
return (
2024-12-16 13:30:44 +05:30
<div>page</div>
)
2024-12-14 14:48:33 +05:30
}
2024-12-16 13:30:44 +05:30
export default page