mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-09-08 16:16:44 +00:00
11 lines
250 B
TypeScript
11 lines
250 B
TypeScript
![]() |
import React from "react";
|
||
|
import ReactDOM from "react-dom/client";
|
||
|
import App from "./App";
|
||
|
import "./style.css";
|
||
|
|
||
|
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
|
||
|
<React.StrictMode>
|
||
|
<App />
|
||
|
</React.StrictMode>
|
||
|
);
|