-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from saadpasta/master
Update
- Loading branch information
Showing
57 changed files
with
971 additions
and
682 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import React from 'react' | ||
import { ApolloProvider } from '@apollo/react-hooks'; | ||
import { Helmet } from "react-helmet"; | ||
|
||
import { config } from './config' | ||
import { client } from './Utils/apollo'; | ||
import Router from './Router'; | ||
|
||
const Application = () => ( | ||
<> | ||
<Helmet> | ||
<title>{config.title}</title> | ||
<meta charSet="utf-8" /> | ||
<meta name="description" content={config.subtitle} /> | ||
<meta name="theme-color" content={config.header.backgroundColor} /> | ||
</Helmet> | ||
<ApolloProvider client={client}> | ||
<Router /> | ||
</ApolloProvider> | ||
</> | ||
); | ||
|
||
export default Application; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.