work-timer/app/routes/time-entries/index.tsx
2023-02-11 03:14:14 +01:00

13 lines
275 B
TypeScript

import { Link } from '@remix-run/react'
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>
)
}