21 lines
350 B
TypeScript
21 lines
350 B
TypeScript
|
/* eslint-disable react/no-unescaped-entities */
|
||
|
|
||
|
"use client";
|
||
|
|
||
|
import React from "react";
|
||
|
|
||
|
export default function App() {
|
||
|
return (
|
||
|
<>
|
||
|
hi,
|
||
|
<br />
|
||
|
<br /> thanks for stopping by.
|
||
|
<br />
|
||
|
<br /> this is still a work in progress, so it's a little sparse.
|
||
|
<br />
|
||
|
<br />
|
||
|
<br /> naresh.
|
||
|
</>
|
||
|
);
|
||
|
}
|