nicklima/strapi-blog-frontend-next

View on GitHub
components/Section/index.tsx

Summary

Maintainability
A
0 mins
Test Coverage
F
50%
import { Container } from "components"
import { ISection } from "./interface"

import * as Styled from "./styled"

const Section = ({ children }: ISection) => (
  <Styled.Section>
    <Container>{children}</Container>
  </Styled.Section>
)

export default Section