mirror of
https://github.com/morten-olsen/parcel.git
synced 2026-02-08 01:36:24 +01:00
init
This commit is contained in:
19
src/App.tsx
Normal file
19
src/App.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user