Last active
October 6, 2020 13:19
-
-
Save indreklasn/e1b1d0a687e837335bb737aca4096a1a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import "./styles.css"; | |
import { Chrono } from "react-chrono"; | |
import data from "./data"; | |
export default function App() { | |
return ( | |
<div className="App"> | |
<div style={{ width: "100%", height: "500px" }}> | |
<Chrono items={data} mode="HORIZONTAL" /> | |
</div> | |
</div> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment