Skip to content

react-component/portal

Folders and files

NameName
Last commit message
Last commit date
Aug 18, 2024
Apr 12, 2024
Apr 12, 2024
Feb 24, 2025
Feb 24, 2025
Apr 12, 2024
Sep 26, 2022
Sep 26, 2022
Apr 12, 2024
Apr 12, 2024
Sep 26, 2022
Sep 26, 2022
Feb 24, 2025
Sep 28, 2022
Feb 24, 2025
Apr 12, 2024

Repository files navigation

rc-portal

React 18 supported Portal Component.

NPM version dumi build status Codecov npm download

Development

npm install
npm start
open http://localhost:8000

Feature

  • React life cycle support portal component

Install

rc-portal

Usage

import Portal from '@rc-component/portal';

const Demo = () => {
  return <Portal open>Hello World</Portal>;
};

export default Demo;

🔥 API

We use typescript to create the Type definition. You can view directly in IDE. But you can still check the type definition here.

Portal

Prop Description Type Default
getContainer Customize portal container element Element | () => Element document.body
open Show the portal boolean false
autoLock Lock screen scroll when open boolean false