This commit is contained in:
2020-08-19 16:48:24 +02:00
commit 243e41bb92
23 changed files with 12392 additions and 0 deletions

19
src/App.tsx Normal file
View File

@@ -0,0 +1,19 @@
import React from 'react';
import { ThemeProvider } from 'styled-components';
import { GithubProvider } from './contexts/Github';
import { EncryptionProvider } from './contexts/Encryption';
import Encrypt from './screens/Encrypt';
import theme from './theme';
const App: React.FC = () => (
<ThemeProvider theme={theme}>
<GithubProvider username="morten-olsen">
<div>Test</div>
<EncryptionProvider>
<Encrypt />
</EncryptionProvider>
</GithubProvider>
</ThemeProvider>
);
export default App;