chore: updated structure
This commit is contained in:
Родитель
775143feb9
Коммит
58c95c96d7
13
README.md
13
README.md
|
@ -1,2 +1,11 @@
|
|||
React Redux Grid application
|
||||
Kendo UI Grid wrapper component for React using the Redux Pattern
|
||||
# React Redux Grid application
|
||||
The following repository contains Kendo UI Grid wrapper for React using the Redux Pattern
|
||||
|
||||
## Getting Started
|
||||
|
||||
```
|
||||
npm install
|
||||
npm start
|
||||
```
|
||||
|
||||
This will launch the examples website at http://localhost:3000
|
До Ширина: | Высота: | Размер: 3.8 KiB После Ширина: | Высота: | Размер: 3.8 KiB |
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -1,5 +1,5 @@
|
|||
import { connect } from 'react-redux';
|
||||
import { sort, group, page, filter, remove, add, update } from './actions';
|
||||
import { sort, group, page, filter, remove, add, update } from './../redux/actions';
|
||||
import ReduxGrid from './ReduxGrid';
|
||||
|
||||
|
|
@ -1,10 +1,10 @@
|
|||
import * as React from 'react';
|
||||
import * as ReactDOM from 'react-dom';
|
||||
import '@progress/kendo-ui';
|
||||
import ReduxGrid from './ReduxGridCont';
|
||||
import ReduxGrid from './Grid/ReduxGridCont';
|
||||
import { Provider } from 'react-redux';
|
||||
import { products } from './products';
|
||||
import { createStoreHelper } from './reduxUtils/createStoreHelper';
|
||||
import { createStoreHelper } from './redux/reduxUtils/createStoreHelper';
|
||||
|
||||
import '@progress/kendo-theme-default/dist/all.css';
|
||||
|
Загрузка…
Ссылка в новой задаче