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

13
src/Body/index.tsx Normal file
View file

@ -0,0 +1,13 @@
import Fetch from "./Fetch";
import Links from "./Links";
const Body = () => {
return (
<>
<Fetch />
<Links />
</>
);
};
export default Body;