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

17
src/screens/Encrypt.tsx Normal file
View File

@@ -0,0 +1,17 @@
import React, { useContext } from 'react';
import Add from '../components/Add';
import FileList from '../components/FileList';
import GithubContext from '../contexts/Github';
const Encrypt: React.FC = () => {
const { username } = useContext(GithubContext);
return (
<div>
<div>To: {username}</div>
<Add />
<FileList />
</div>
);
};
export default Encrypt;