SupremeTechnopriest/react-idle-timer

View on GitHub
docs/src/components/Container.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import { Box, BoxProps } from '@chakra-ui/react'

export const Container = (props: BoxProps) => (
  <Box
    w='full'
    pb='12'
    pt='3'
    maxW={{ base: 'xl', md: '7xl' }}
    mx='auto'
    px={{ base: '6', md: '8' }}
    {...props}
  />
)