React tournament bracket renderer
npm install react-tournament-bracketReact components for rendering a tournament bracket
npm i react-tournament-bracket
`Usage
These bracket components rely on a cyclical graph data structure.
Thus, to render a bracket, you pass in only the final game.
If you have a set of games matching the model, you can pass them all in
to render all the brackets. The Bracket Generator will discover which games
are considered 'finals' and order the rendered brackets by the height of the
winning path.`jsx
import { Bracket } from 'react-tournament-bracket';
import { render } from 'react-dom';render(, document.getElementById('app'));
``