Skip to content
This repository has been archived by the owner on Feb 19, 2022. It is now read-only.

Immutable support #542

Merged
merged 16 commits into from
Dec 21, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions demo/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import BrushContainerDemo from "./components/victory-brush-container-demo";
import AnimationDemo from "./components/animation-demo";
import SelectionDemo from "./components/selection-demo";
import PolarDemo from "./components/victory-polar-chart-demo";
import ImmutableDemo from "./components/immutable-demo";
import DebugDemo from "./components/debug-demo";

class Home extends React.Component {
Expand Down Expand Up @@ -72,6 +73,7 @@ class App extends React.Component {
case "/selection-container": Child = SelectionDemo; break;
case "/create-container": Child = CreateContainerDemo; break;
case "/polar": Child = PolarDemo; break;
case "/immutable": Child = ImmutableDemo; break;
case "/debug": Child = DebugDemo; break;
default: Child = Home;
}
Expand Down Expand Up @@ -104,6 +106,7 @@ class App extends React.Component {
<li><a href="#/selection-container">Victory Selection Container Demo</a></li>
<li><a href="#/create-container">createContainer Demo</a></li>
<li><a href="#/polar">Polar Demo</a></li>
<li><a href="#/immutable">immutable.js demo</a></li>
</ul>
<Child/>
</div>
Expand Down
Loading