mirror of https://github.com/mkrhere/pw2
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
338 B
16 lines
338 B
2 years ago
|
import React from "react";
|
||
|
|
||
|
import { createRoot } from "react-dom/client";
|
||
|
import { BrowserRouter as Router } from "react-router-dom";
|
||
|
import "./index.css";
|
||
|
|
||
|
import BlogHome from "./pages/blog/Home";
|
||
|
|
||
|
createRoot(document.getElementById("root")!).render(
|
||
|
<React.StrictMode>
|
||
|
<Router>
|
||
|
<BlogHome />
|
||
|
</Router>
|
||
|
</React.StrictMode>,
|
||
|
);
|