Refactor project structure

This commit is contained in:
Thomas Nordquist
2019-04-07 20:16:48 +02:00
parent 16c72fa9be
commit e2c60cca64
44 changed files with 306 additions and 529 deletions

View File

@@ -36,7 +36,7 @@ import { bindActionCreators } from 'redux'
import { connect } from 'react-redux'
import { publishActions, globalActions } from '../../../actions'
import ClearAdornment from '../../helper/ClearAdornment'
import { TopicViewModel } from '../../../TopicViewModel'
import { TopicViewModel } from '../../../model/TopicViewModel'
interface Props {
node?: q.TreeNode<TopicViewModel>
@@ -345,4 +345,4 @@ const mapStateToProps = (state: AppState) => {
}
}
export default withTheme(connect(mapStateToProps, mapDispatchToProps)(Publish))
export default connect(mapStateToProps, mapDispatchToProps)(withTheme(Publish))