File size: 361 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import React from "react";
import ReactDOM from "react-dom";
import "./index.css";
import App from "./App";
import "react-alice-carousel/lib/alice-carousel.css";
import CryptoContext from "./CryptoContext";
ReactDOM.render(
<React.StrictMode>
<CryptoContext>
<App />
</CryptoContext>
</React.StrictMode>,
document.getElementById("root")
);
|