cami
29142a9977
In this commit I want to refactor some things. - I don't want to use external connections so I moved all that shit to localhost - I do not need so many spaces as it is bad for formatting
5 lines
146 B
JavaScript
5 lines
146 B
JavaScript
import React from "react";
|
|
import ReactDOM from "react-dom";
|
|
import App from "./App";
|
|
|
|
ReactDOM.render(<App />, document.getElementById("root"));
|