This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/src/pages/index.js

20 lines
457 B
JavaScript
Raw Normal View History

import React from "react";
2020-02-28 11:30:27 +00:00
import PropTypes from "prop-types";
import SEO from "../components/seo";
import { App } from "../components";
import "../global.scss";
import LocationContext from "../LocationContext";
2020-02-28 11:30:27 +00:00
export default function IndexPage({ location }) {
return (
<LocationContext.Provider value={location}>
<SEO />
<App />
</LocationContext.Provider>
);
}
2020-02-28 11:30:27 +00:00
IndexPage.propTypes = {
location: PropTypes.object.isRequired
};