Pinafore-Web-Client-Frontend/src/routes/_components/dialog/creators/showMuteDialog.js

10 lines
226 B
JavaScript
Raw Normal View History

import MuteDialog from '../components/MuteDialog.html'
2019-02-19 01:27:59 +01:00
import { showDialog } from './showDialog'
export default function showMuteDialog (account) {
2019-02-19 01:27:59 +01:00
return showDialog(MuteDialog, {
label: 'intl.mute',
2019-02-19 01:27:59 +01:00
account
})
}