emb-rep / my-app /src /index.js
abadesalex's picture
plot and logic
8765030
raw
history blame
524 Bytes
import React from "react";
import ReactDOM from "react-dom/client";
import CreateWordEmbedding from "./Components/CreateWord/CreateWord";
import EmbeddingPlot from "./Components/Plot";
import Intro from "./Components/Header";
import WordCard from "./Components/WordCard";
import ActiveWords from "./Components/ActiveWords";
import Body from "./Components/Body";
const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(
<React.StrictMode>
<Intro />
<ActiveWords />
</React.StrictMode>
);