next.js/packages/next/src/next-devtools/dev-overlay/storybook/with-shadow-portal.tsx
with-shadow-portal.tsx11 lines269 B
import '../global.css'
import { ComponentStyles } from '../styles/component-styles'
import { ShadowPortal } from '../components/shadow-portal'

export const withShadowPortal = (Story: any) => (
  <ShadowPortal>
    <ComponentStyles />
    <Story />
  </ShadowPortal>
)
Quest for Codev2.0.0
/
SIGN IN