Portal

Portal 컴포넌트는 React의 createPortal을 컴포넌트로 만든 요소입니다.

Introduce

React.createPortal 을 컴포넌트로 사용할 수 있습니다.

import { Portal } from '@wanteddev/wds';

const Demo = () => {
  return (
    <Portal>
      <div />
    </Portal>
  )
}

export default Demo;

API

NameTypesdefaultValue
container
null | Element | DocumentFragment
globalThis?.document?.body

© 2026 Wanted Lab, Inc.