Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Last active October 6, 2020 13:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save indreklasn/e1b1d0a687e837335bb737aca4096a1a to your computer and use it in GitHub Desktop.
Save indreklasn/e1b1d0a687e837335bb737aca4096a1a to your computer and use it in GitHub Desktop.
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