redbadger/website-honestly

View on GitHub
site/components/component-renderer/strong.js

Summary

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

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

export default function Paragraph({ children }: ParagraphProps) {
  return <strong className={styles.boldSansSerif}>{children}</strong>;
}