pinafore/src/routes/_components/dialog/creators/showMuteDialog.js

10 wiersze
226 B
JavaScript
Czysty Zwykły widok Historia

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