Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@sushiswap/ui / Page.tsx
Size: Mime:
import classNames from 'classnames'
import type { FC, ReactNode, ComponentType, HTMLAttributes } from 'react'

export const Page: FC<HTMLAttributes<HTMLElement>> = ({ children, className, ...props }) => (
  <main {...props} className={classNames('w-full max-w-3xl mx-auto py-16', className)}>
    {children}
  </main>
)