import { FC } from 'react'; import { Element } from '../types'; interface ElementViewProps { element: Element; } const ElementView: FC = ({ element }) => { return (

{element.name}

); }; export default ElementView;