import Fade from '@material-ui/core/Fade'; import Grow from '@material-ui/core/Grow'; import { ReactNode } from 'react'; export default function FadeThroughTransition(props: { from: ReactNode; to: ReactNode; show: boolean; }) { return
{props.to}
{props.from}
; }