added type declarations
This commit is contained in:
parent
5734c9b8fa
commit
14387a5413
3 changed files with 6 additions and 11 deletions
|
@ -2,7 +2,7 @@ import React from "react";
|
||||||
import Navbar from '../../components/navbar';
|
import Navbar from '../../components/navbar';
|
||||||
import Item from "../../components/item";
|
import Item from "../../components/item";
|
||||||
|
|
||||||
export default () => (
|
export default (): JSX.Element => (
|
||||||
<>
|
<>
|
||||||
<Navbar />
|
<Navbar />
|
||||||
<Item
|
<Item
|
||||||
|
|
|
@ -3,13 +3,8 @@ import Navbar from '../components/navbar';
|
||||||
import { graphql } from "gatsby";
|
import { graphql } from "gatsby";
|
||||||
import { MDXRenderer } from 'gatsby-plugin-mdx';
|
import { MDXRenderer } from 'gatsby-plugin-mdx';
|
||||||
|
|
||||||
export default ({
|
export default ({ data }) => {
|
||||||
data
|
const { frontmatter, body } = data.mdx;
|
||||||
}) => {
|
|
||||||
let {
|
|
||||||
frontmatter,
|
|
||||||
body
|
|
||||||
} = data.mdx;
|
|
||||||
|
|
||||||
return <>
|
return <>
|
||||||
<Navbar />
|
<Navbar />
|
||||||
|
|
|
@ -8,7 +8,7 @@ import Navbar from "../components/navbar";
|
||||||
import { graphql } from "gatsby";
|
import { graphql } from "gatsby";
|
||||||
import style from "./notes.module.css";
|
import style from "./notes.module.css";
|
||||||
|
|
||||||
export default ({ data, pageContext }) => {
|
export default ({ data, pageContext }): JSX.Element => {
|
||||||
const posts = data.allMdx.edges;
|
const posts = data.allMdx.edges;
|
||||||
const { currentPage, numPages, rootPath } = pageContext;
|
const { currentPage, numPages, rootPath } = pageContext;
|
||||||
let prevPageLink = null;
|
let prevPageLink = null;
|
||||||
|
|
Loading…
Reference in a new issue