import React from 'react'; import styled from 'styled-components'; import Col from './Col'; import Row from './Row'; const Wrap = styled.div` display: flex; flex-direction: column; gap: 10px; `; const Home: React.FC = () => { return ( ); }; export default Home;