Files
ox_lib/web/src/features/dev/debug/alert.ts
2023-02-01 16:19:08 +01:00

23 lines
511 B
TypeScript

import { debugData } from '../../../utils/debugData';
import { AlertProps } from '../../dialog/AlertDialog';
export const debugAlert = () => {
debugData<AlertProps>([
{
action: 'sendAlert',
data: {
header: 'Hello there',
content: 'General kenobi \n Markdown works',
centered: true,
size: 'lg',
overflow: true,
cancel: true,
// labels: {
// confirm: 'Ok',
// cancel: 'Not ok',
// },
},
},
]);
};