How to use the @gitgraph/react.Orientation.Horizontal function in @gitgraph/react

To help you get started, we’ve selected a few @gitgraph/react examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github nicoespeon / gitgraph.js / packages / stories / src / gitgraph-react / 2-orientations.stories.tsx View on Github external
.add("horizontal", () => (
    
      {(gitgraph) => {
        const master = gitgraph.branch("master").commit("Initial commit");

        // Shouldn't render tags on horizontal mode
        master.tag("v1.0");

        const develop = gitgraph.branch("develop");
        develop.commit("one");
        master.commit("two");
        develop.commit("three");
        master.merge(develop);
        master.commit();
      }}
github nicoespeon / gitgraph.js / packages / stories / src / gitgraph-react / 2-orientations.stories.tsx View on Github external
.add("horizontal (black arrow)", () => (
    
      {(gitgraph) => {
        const master = gitgraph.branch("master").commit("Initial commit");
        const develop = gitgraph.branch("develop");
        develop.commit("one");
        master.commit("two");
        develop.commit("three");
        master.merge(develop);
        master.commit();
      }}
    
  ))
  .add("horizontal reverse (black arrow)", () => (