redbadger/website-honestly

View on GitHub
site/components/section/index.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
// @flow
import * as React from 'react';
import styles from './style.css';

type SectionProps = {
  children: React.Node,
};

export default function Section({ children }: SectionProps) {
  return <section className={styles.section}>{children}</section>;
}