import React, { FC } from 'react'; import { LinkProps } from '../../types'; import './styles.css'; const Link: FC = (props: LinkProps) => { const { contentState, entityKey, children } = props; const entity = contentState.getEntity(entityKey); const data = entity.getData(); const { url } = data; return ( {children} ); }; export default Link;