mirror of
https://github.com/tomru/advcal.git
synced 2026-03-03 06:27:17 +01:00
use jsx extension for react stuff
This commit is contained in:
28
pages/debug.jsx
Normal file
28
pages/debug.jsx
Normal file
@@ -0,0 +1,28 @@
|
||||
import React from "react";
|
||||
import Head from "next/head";
|
||||
|
||||
import AppProvider from "../context/appProvider";
|
||||
|
||||
import Header from "../components/header";
|
||||
import Calendar from "../components/calendar";
|
||||
import ShowDoorDialog from "../components/showdoordialog";
|
||||
import Nav from "../components/nav";
|
||||
|
||||
const HomeDebug = () => {
|
||||
return (
|
||||
<div>
|
||||
<Head>
|
||||
<title>DEBUG: Bello's Adventskalender 2020</title>
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
</Head>
|
||||
<AppProvider debug={true}>
|
||||
<Header />
|
||||
<Calendar />
|
||||
<ShowDoorDialog />
|
||||
<Nav />
|
||||
</AppProvider>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default HomeDebug;
|
||||
Reference in New Issue
Block a user