Skip to content

Commit

Permalink
✏️Refactor chart --> svg for library
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanc1 committed Jun 29, 2020
1 parent 84ad411 commit 55f7a14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iooxa.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { applyMiddleware, createStore, combineReducers } from 'redux';
import thunkMiddleware from 'redux-thunk';
import runtime, { types, actions, selectors } from '@iooxa/runtime';
import { register as basicRegister } from '@iooxa/components';
import { register as chartRegister } from '@iooxa/svg';
import { register as svgRegister } from '@iooxa/svg';
import * as components from './src/components';
import setupArticle from './src/components/article';

Expand Down Expand Up @@ -41,6 +41,6 @@ window.iooxa = {
} as Iooxa;

basicRegister(window.iooxa.store);
chartRegister(window.iooxa.store);
svgRegister(window.iooxa.store);
components.register(window.iooxa.store);
setupArticle();

0 comments on commit 55f7a14

Please sign in to comment.