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