Files
nextjs-address-book/src/app/(sidebar)/page.tsx

16 lines
280 B
TypeScript

import React from "react";
export default function Home() {
return (
<p id="index-page">
This is a demo for React Router.
<br/>
Check out{" "}
<a href="https://reactrouter.com">
the docs at reactrouter.com
</a>
.
</p>
);
}