diff options
Diffstat (limited to 'src/components/Toast/index.e2e.tsx')
-rw-r--r-- | src/components/Toast/index.e2e.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/Toast/index.e2e.tsx b/src/components/Toast/index.e2e.tsx index 57daf5bf0..64072d88d 100644 --- a/src/components/Toast/index.e2e.tsx +++ b/src/components/Toast/index.e2e.tsx @@ -1,5 +1,9 @@ +import {type ToastApi} from '#/components/Toast/types' + export function ToastContainer() { return null } -export function show() {} +export const toast: ToastApi = { + show() {}, +} |