Move Updater class to managers

This commit is contained in:
Robbie Antenesse 2017-08-20 11:57:17 -06:00
parent 0be726aee4
commit 173bc48eee
2 changed files with 2 additions and 3 deletions

View File

@ -5,8 +5,7 @@ import Inferno from 'inferno';
import Component from 'inferno-component';
import dictionary from './managers/DictionaryData';
import { Updater } from './Updater';
import { Updater } from './managers/Updater';
if (process.env.NODE_ENV !== 'production') {
require('inferno-devtools');

View File

@ -1,4 +1,4 @@
import helper from './Helper';
import helper from '../Helper';
export class Updater {
constructor (appWithDictionaryState, dictionary) {