13 lines
275 B
TypeScript
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>
|
||
|
|
)
|
||
|
|
}
|