In addition to the Storybook for React setup, you'll also need to install these packages:
npm i -D @babel/core babel-loader css-loader style-loader
import React from 'react'; | |
import { Router } from 'next-router'; | |
import getAuthSession from 'services/authSession'; | |
function redirect(res) { | |
if (res) { | |
// SSR | |
res.writeHead(302, { Location: '/' }); | |
res.end(); |
In addition to the Storybook for React setup, you'll also need to install these packages:
npm i -D @babel/core babel-loader css-loader style-loader