like-history / src /App.js
timqian's picture
Add msg
1465ed6
raw
history blame
679 Bytes
import Input from "./components/input";
/**
* 1. User click enter key
* 2. Get model/dataset/space name
* 3. Get data from API
* 4. Format data(to 20 points at most)
* 5. Draw line chart
*/
function App() {
return (
<div className="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8 py-16">
{/* We've used 3xl here, but feel free to try other max-widths based on your needs */}
<div className="mx-auto max-w-3xl">
<h1 className="text-sm font-light right-0 text-right">
View the like history of a project on huggingface
</h1>
<Input />
<svg className="line-chart"></svg>
</div>
</div>
);
}
export default App;