I want to dynamically set the body classname
import Head from "next/head";
...
let Device = () => {
return (
<React.Fragment>
<Head>
<title>Device</title>
<body className="page-device" />
</Head>
<div>Device</div>
</React.Fragment>
);
};
export default Device;
...
but


Please follow the issue template's instructions -- questions belong on our Spectrum.