Refactor body into multiple files

This commit is contained in:
Michael Bradley 2025-02-21 02:06:51 -05:00
parent 36db4c2c0c
commit a513e3786c
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8
10 changed files with 168 additions and 151 deletions

23
src/Body/Fetch/index.tsx Normal file
View 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;