forked from github/plane
b084844565
* [WEB-1401] chore: toast refactor in space app. * fix: build errors in space app.
21 lines
442 B
TypeScript
21 lines
442 B
TypeScript
"use client";
|
|
|
|
import { ReactNode } from "react";
|
|
import { useTheme } from "next-themes"
|
|
// ui
|
|
import { Toast } from "@plane/ui";
|
|
// helpers
|
|
import { resolveGeneralTheme } from "@/helpers/common.helper";
|
|
|
|
export const ToastProvider = ({ children }: { children: ReactNode }) => {
|
|
// themes
|
|
const { resolvedTheme } = useTheme();
|
|
|
|
return (
|
|
<>
|
|
<Toast theme={resolveGeneralTheme(resolvedTheme)} />
|
|
{children}
|
|
</>
|
|
);
|
|
};
|