import React, { FC } from 'react'; export const Portal: FC = ({ children }) => (
{children}
); export default Portal;