Ghost/apps/comments-ui/src/pages.js
2022-07-21 16:59:18 +02:00

12 lines
372 B
JavaScript

import AddNameDialog from './components/modals/AddNameDialog';
import ReportDialog from './components/modals/ReportDialog';
/** List of all available pages in Comments-UI, mapped to their UI component
* Any new page added to comments-ui needs to be mapped here
*/
const Pages = {
addNameDialog: AddNameDialog,
reportDialog: ReportDialog
};
export default Pages;