mirror of
https://github.com/ThisTine/Showdown.git
synced 2026-08-18 23:18:48 +07:00
14 lines
338 B
TypeScript
14 lines
338 B
TypeScript
import { StrictMode } from "react";
|
|
import { createRoot } from "react-dom/client";
|
|
import { MotionConfig } from "motion/react";
|
|
import App from "./App";
|
|
import "./index.css";
|
|
|
|
createRoot(document.getElementById("root")!).render(
|
|
<StrictMode>
|
|
<MotionConfig reducedMotion="user">
|
|
<App />
|
|
</MotionConfig>
|
|
</StrictMode>,
|
|
);
|