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

14 lines
218 B
JavaScript
Raw Normal View History

import React from "react";
import SEO from "../components/seo";
import { App } from "../components";
import "../global.scss";
const IndexPage = () => (
<>
<SEO />
<App />
</>
);
export default IndexPage;