developer239/react-apollo-graphql

View on GitHub
src/components/Typography/H3.tsx

Summary

Maintainability
A
55 mins
Test Coverage
import { Typography } from 'antd'
import React, { FC } from 'react'

export const H3: FC = ({ children }) => (
  <Typography.Title level={4}>{children}</Typography.Title>
)