-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Obadja Ris
committed
Sep 26, 2020
1 parent
81eba2e
commit f7b049c
Showing
8 changed files
with
1,499 additions
and
310 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import React, { Suspense } from "react" | ||
import Layout from "app/layouts/Layout" | ||
import { Head, Link, usePaginatedQuery, useRouter, BlitzPage } from "blitz" | ||
|
||
const ITEMS_PER_PAGE = 100 | ||
const FietsenPage: BlitzPage = () => { | ||
return ( | ||
<div> | ||
<Head> | ||
<title>Fietsen</title> | ||
</Head> | ||
<main> | ||
<div> | ||
<p>Hoi, welkom op deze pagina!</p> | ||
</div> | ||
</main> | ||
</div> | ||
) | ||
} | ||
FietsenPage.getLayout = (page) => <Layout title={"Fietsen"}>{page}</Layout> | ||
export default FietsenPage |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.