Skip to content

Instantly share code, notes, and snippets.

@chetanraj
Created February 12, 2021 16:58
Show Gist options
  • Save chetanraj/1ac5aafc9f3b094ee6cf4189432a905f to your computer and use it in GitHub Desktop.
Save chetanraj/1ac5aafc9f3b094ee6cf4189432a905f to your computer and use it in GitHub Desktop.
const Section = ({ children }) => {
return (
<Container>
{children}
</Container>
);
}
const Container = styled.section`
/** You can include all the section styles here */
span {
color: green;
}
a {
color: blue
}
`;
export default Section;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment