import React, { FunctionComponent } from 'react'; const createElement = ({ id, className }: IProps) => ({ __html: `
` }); type IProps = { id?: string; className?: string; } const ItemsContainerElement: FunctionComponent = ({ id, className }: IProps) => { return (
); }; export default ItemsContainerElement;