hierarchical-estimates-visu.../components/homepage.js
NunoSempere 6f91849e4e feat: Get prototype working.
Display still missing, but some core functionality already
works.
2022-06-24 21:38:07 -04:00

16 lines
298 B
JavaScript

import React, { useState } from "react";
import { Title } from "./title.js";
import { Graph } from "./graph/graph.js";
export function Homepage({ listOfElementsInit }) {
return (
<div className="block w-full items-center sm:w-full mt-10">
<Title />
<Graph/>
</div>
);
}