lbry-desktop/ui/modal/modalChannelCreate/view.jsx
2019-12-09 10:04:07 -05:00

18 lines
397 B
JavaScript

// @flow
import React from 'react';
import ChannelCreate from 'component/channelCreate';
import { Modal } from 'modal/modal';
type Props = { doHideModal: () => void };
const ChannelCreateModal = (props: Props) => {
const { doHideModal } = props;
return (
<Modal isOpen type="card" onAborted={doHideModal}>
<ChannelCreate />
</Modal>
);
};
export default ChannelCreateModal;