Skip to content

Commit

Permalink
Add index.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
johnwarden committed Dec 4, 2023
1 parent b17d080 commit 5aaf5b5
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions app/routes/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// import { Link, useLocation } from '@remix-run/react'
// import { GeneralErrorBoundary } from '#app/components/error-boundary.tsx'
// import { Icon } from '#app/components/ui/icon.tsx'

// export async function loader() {
// }

export default function Index() {
// due to the loader, this component will never be rendered, but we'll return
// the error boundary just in case.

return <div>
<div>This is the home page</div>
</div>
}

0 comments on commit 5aaf5b5

Please sign in to comment.