import { useState } from "react"; import { Header } from "components/editor-icons/comps/header"; import { DEFAULT_VALUE } from "components/editor-icons/editor.constants"; // import { Editor } from "components/editor-icons"; import { EditorType } from "types/editor"; import { TourProvider } from "@reactour/tour"; import { Footer } from "@/components/footer"; import Head from "next/head"; import { FormattedMessage, useIntl } from "react-intl"; import dynamic from "next/dynamic"; const DynamicEditor = dynamic(() => import("@/components/editor-icons"), { loading: () =>

Loading...

, }); export default function IconsEditor() { const intl = useIntl(); const [editor, setEditor] = useState(DEFAULT_VALUE); return ( <> {intl.formatMessage({ id: "iconsEditor.meta.title" })}

Rocket League pack

6 icons for your Rocket League server

Rocket League pack

6 icons for your Rocket League server

Rocket League pack

6 icons for your Rocket League server

); }