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/packages/webapp/src/pages/index.js

28 lines
647 B
JavaScript
Raw Normal View History

2020-02-28 12:52:32 +00:00
import React, { useMemo } 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";
2020-02-28 12:52:32 +00:00
import AppContext from "../AppContext";
2020-06-09 12:10:43 +00:00
import "typeface-metropolis"; // import Metropolis typeface
2020-02-28 11:30:27 +00:00
export default function IndexPage({ location }) {
2020-02-28 12:52:32 +00:00
const context = useMemo(
() => ({
2020-03-23 14:02:47 +00:00
apiUrl: process.env.GATSBY_API_URL || location.origin,
2020-02-28 12:52:32 +00:00
}),
[location.origin]
);
2020-02-28 11:30:27 +00:00
return (
2020-02-28 12:52:32 +00:00
<AppContext.Provider value={context}>
2020-02-28 11:30:27 +00:00
<SEO />
<App />
2020-02-28 12:52:32 +00:00
</AppContext.Provider>
2020-02-28 11:30:27 +00:00
);
}
2020-02-28 11:30:27 +00:00
IndexPage.propTypes = {
2020-03-23 14:02:47 +00:00
location: PropTypes.object.isRequired,
2020-02-28 11:30:27 +00:00
};