Refactor body into multiple files
This commit is contained in:
parent
36db4c2c0c
commit
a513e3786c
10 changed files with 168 additions and 151 deletions
13
src/Body/index.tsx
Normal file
13
src/Body/index.tsx
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import Fetch from "./Fetch";
|
||||
import Links from "./Links";
|
||||
|
||||
const Body = () => {
|
||||
return (
|
||||
<>
|
||||
<Fetch />
|
||||
<Links />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default Body;
|
||||
Loading…
Add table
Add a link
Reference in a new issue