Refactor body into multiple files
This commit is contained in:
parent
36db4c2c0c
commit
a513e3786c
10 changed files with 168 additions and 151 deletions
23
src/Body/Fetch/index.tsx
Normal file
23
src/Body/Fetch/index.tsx
Normal file
|
@ -0,0 +1,23 @@
|
|||
import ColouredLine from "./ColouredLine";
|
||||
import Description from "./Description";
|
||||
import ProfilePicture from "./ProfilePicture";
|
||||
import { BlankLine } from "./utils";
|
||||
|
||||
// TODO: Automate screenshot of info for thumbnail?
|
||||
const Fetch = () => {
|
||||
return (
|
||||
<div id="fetch-container">
|
||||
<div id="fetch">
|
||||
<ProfilePicture />
|
||||
<div id="basic-info">
|
||||
<Description />
|
||||
<BlankLine />
|
||||
<ColouredLine light={false} />
|
||||
<ColouredLine light={true} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Fetch;
|
Loading…
Add table
Add a link
Reference in a new issue