21 lines
475 B
TypeScript
21 lines
475 B
TypeScript
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">
|
|
<ProfilePicture />
|
|
<div id="basic-info">
|
|
<Description />
|
|
<BlankLine />
|
|
<ColouredLine light={false} />
|
|
<ColouredLine light={true} />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Fetch;
|