// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import React from 'react'; import Portal from './'; import Flex from '../Flex'; export default { title: 'UI Components/Portal', component: Portal, }; export const _Portal = (args) => (
Portal content
Root Div 1
Root Div 2
); _Portal.argTypes = { rootId: { control: 'select', options: ['root-div-1', 'root-div-2'] }, }; _Portal.args = { rootId: 'root-div-1', }; _Portal.story = { name: 'Portal', };