2024-01-21 23:08:25 +08:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
import ReduxProvider from "@/app/store/ReduxProvider";
|
2024-02-12 15:00:21 +08:00
|
|
|
import QEditor from "@/components/QuillEditor";
|
2024-01-21 23:08:25 +08:00
|
|
|
|
2024-02-12 20:55:14 +08:00
|
|
|
export default function QuillWrapper({ lng }) {
|
2024-01-21 23:08:25 +08:00
|
|
|
return (
|
|
|
|
<ReduxProvider>
|
2024-02-12 20:55:14 +08:00
|
|
|
<QEditor lng={lng} />
|
2024-01-21 23:08:25 +08:00
|
|
|
</ReduxProvider>
|
|
|
|
);
|
|
|
|
}
|