rsnext/examples/with-redux-persist/components/examples.js
Todor Totev bb23d37b28
Enhance with redux persist (#13577)
* Moved the state to the clock component

* Refactored the store according to the new requirements

* Refactored _app so it uses the new store

* This file is no longer needed

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
2020-05-30 13:00:37 -05:00

15 lines
237 B
JavaScript

import Clock from './clock'
import Counter from './counter'
import DataList from './data-list'
const Examples = () => {
return (
<div>
<Clock />
<Counter />
<DataList />
</div>
)
}
export default Examples