* [WEB-5473] fix: source map errors * [WEB-5473] chore: run codemod * fix: build errors in editor --------- Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com>
16 lines
394 B
TypeScript
16 lines
394 B
TypeScript
import { useTheme } from "next-themes";
|
|
// plane imports
|
|
import { Toast } from "@plane/propel/toast";
|
|
import { resolveGeneralTheme } from "@plane/utils";
|
|
|
|
export function ToastProvider({ children }: { children: React.ReactNode }) {
|
|
// themes
|
|
const { resolvedTheme } = useTheme();
|
|
|
|
return (
|
|
<>
|
|
<Toast theme={resolveGeneralTheme(resolvedTheme)} />
|
|
{children}
|
|
</>
|
|
);
|
|
}
|