import React, { FunctionComponent, ReactElement, useEffect } from "react"; type Props = { children: Array; title: string; }; const Container: FunctionComponent = ({ children, title }: Props) => { useEffect(() => { document.title = `OneUptime | ${title}`; }, []); return
{children}
; }; export default Container;