mirror of
https://github.com/Xevion/vastly.git
synced 2025-12-11 23:11:51 -06:00
Cleanup aliases, remove example code, tailwind
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
import React from 'react'
|
||||
import {createRoot} from 'react-dom/client'
|
||||
import './style.css'
|
||||
import App from './App'
|
||||
import React from "react";
|
||||
import { createRoot } from "react-dom/client";
|
||||
import "./main.css";
|
||||
import App from "./App";
|
||||
|
||||
const container = document.getElementById('root')
|
||||
const container = document.getElementById("root");
|
||||
|
||||
const root = createRoot(container!)
|
||||
const root = createRoot(container!);
|
||||
|
||||
root.render(
|
||||
<React.StrictMode>
|
||||
<App/>
|
||||
</React.StrictMode>
|
||||
)
|
||||
<React.StrictMode>
|
||||
<App />
|
||||
</React.StrictMode>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user