xref: /MusicFree/src/components/dialogs/index.tsx (revision bf6e62f27bf21a011995d7561e0093fae1a2d72e)
1*bf6e62f2S猫头猫import React from 'react';
2*bf6e62f2S猫头猫import {Portal} from 'react-native-paper';
3*bf6e62f2S猫头猫import SimpleDialog from './components/simpleDialog';
4*bf6e62f2S猫头猫
5*bf6e62f2S猫头猫interface IProps {}
6*bf6e62f2S猫头猫export default function (props: IProps) {
7*bf6e62f2S猫头猫  return (
8*bf6e62f2S猫头猫    <Portal>
9*bf6e62f2S猫头猫      <SimpleDialog></SimpleDialog>
10*bf6e62f2S猫头猫    </Portal>
11*bf6e62f2S猫头猫  );
12*bf6e62f2S猫头猫}
13