21 lines
425 B
TypeScript
21 lines
425 B
TypeScript
"use client";
|
|
|
|
import React from "react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<>
|
|
hi,
|
|
<br />
|
|
<br /> how nice of you to stop by.
|
|
<br />
|
|
<br /> this cute little site is my own little playground. my own corner of
|
|
the web for me to share and show off.
|
|
<br />
|
|
<br /> feel free to poke around and see what you find.
|
|
<br />
|
|
<br /> — naresh
|
|
</>
|
|
);
|
|
}
|