redbadger/website-honestly

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

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
// @flow
import * as React from 'react';

type ContentProps = {
  children?: React.Node,
};

export default function Content({ children }: ContentProps) {
  return <div>{children}</div>;
}