borders/app/routes/notes/index.tsx

13 lines
266 B
TypeScript

import { Link } from "remix";
export default function NoteIndexPage() {
return (
<p>
No note selected. Select a note on the left, or{" "}
<Link to="new" className="text-blue-500 underline">
create a new note.
</Link>
</p>
);
}