File size: 524 Bytes
8765030
 
 
 
 
 
 
 
1965b50
8765030
5ebef9c
 
8765030
 
 
5ebef9c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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>
);