import { Link } from "react-router-dom"; export default function Page({ heading, content, start, skip, next, back, getStarted, }) { return (

{heading}

{content}

{start && ( )} {skip && ( )} {back && ( )} {next && ( )} {getStarted && ( )}
); }