mirror of
https://github.com/muerwre/markdown-home-tab.git
synced 2025-05-06 22:36:40 +07:00
initial commit
This commit is contained in:
commit
9a4eb6ef58
23 changed files with 2490 additions and 0 deletions
11
src/main.tsx
Normal file
11
src/main.tsx
Normal file
|
@ -0,0 +1,11 @@
|
|||
import React from "react";
|
||||
import ReactDOM from "react-dom/client";
|
||||
import { Editor } from "~/pages/editor";
|
||||
|
||||
import "./styles/main.scss";
|
||||
|
||||
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
|
||||
<React.StrictMode>
|
||||
<Editor />
|
||||
</React.StrictMode>
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue