import React, { ReactNode } from 'react'; // @ts-ignore import styles from './Strong.less'; interface Props { children: ReactNode; } export const Strong = ({ children }: Props) => ( {children} );