import React from 'react'; import components from './components'; import {dialogInfoStore} from './useDialog'; import Portal from '../base/portal'; export default function () { const dialogInfoState = dialogInfoStore.useValue(); const Component = dialogInfoState.name ? components[dialogInfoState.name] : null; return ( {Component ? ( ) : null} ); }