src/Section/Section.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import styled from 'styled-components'
 
import { globalSectionSpacing } from '../utils/styled'
 
export const Section = styled.section`
${globalSectionSpacing};
`
 
Section.displayName = 'Section'