mirror of
https://github.com/outline/outline.git
synced 2026-06-21 15:25:01 +03:00
fdb85ec195
Co-authored-by: Tom Moor <tom.moor@gmail.com>
9 lines
193 B
JavaScript
9 lines
193 B
JavaScript
// @flow
|
|
import useStores from "./useStores";
|
|
|
|
export default function useToasts() {
|
|
const { toasts } = useStores();
|
|
|
|
return { showToast: toasts.showToast, hideToast: toasts.hideToast };
|
|
}
|