Skip to content

Commit e8c0de1

Browse files
committed
docs (readMe): fix examples table of content link
1 parent eefe9cb commit e8c0de1

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

README.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
1-
<center>
2-
3-
# React Easy State
4-
5-
[![CircleCI](https://circleci.com/gh/solkimicreb/react-easy-state/tree/master.svg?style=shield)](https://circleci.com/gh/solkimicreb/react-easy-state/tree/master) [![Coverage Status](https://coveralls.io/repos/github/solkimicreb/react-easy-state/badge.svg)](https://coveralls.io/github/solkimicreb/react-easy-state) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com) [![Version](https://img.shields.io/npm/v/react-easy-state.svg)](https://www.npmjs.com/package/react-easy-state) [![License](https://img.shields.io/npm/l/react-easy-state.svg)](https://www.npmjs.com/package/react-easy-state)
1+
# React Easy State · [![CircleCI](https://circleci.com/gh/solkimicreb/react-easy-state/tree/master.svg?style=shield)](https://circleci.com/gh/solkimicreb/react-easy-state/tree/master) [![Coverage Status](https://coveralls.io/repos/github/solkimicreb/react-easy-state/badge.svg)](https://coveralls.io/github/solkimicreb/react-easy-state) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com) [![Version](https://img.shields.io/npm/v/react-easy-state.svg)](https://www.npmjs.com/package/react-easy-state) [![License](https://img.shields.io/npm/l/react-easy-state.svg)](https://www.npmjs.com/package/react-easy-state)
62

73
*Easy State provides a healthy balance of local and global state management in a simple, scalable way.*
84

9-
</center>
10-
115
## Table of contents
126

137
- [Installation](#installation)
148
- [Usage](#usage)
15-
- [Examples](#examples)
9+
- [Examples](#examples-with-live-demos)
1610
- [Platform support](#platform-support)
1711
- [Performance](#performance)
1812
- [State management overview](#state-management-overview)
@@ -72,7 +66,7 @@ class Hello extends Component {
7266
export default easyComp(Hello)
7367
```
7468

75-
*Make sure to wrap all of your components - including stateful and stateless ones - before you export them.*
69+
**Make sure to wrap all of your components - including stateful and stateless ones - before you export them.**
7670

7771
In addition to the boilerplate reduction, `easyComp` comes with a bunch of additional benefits that may not be obvious at first glance.
7872

@@ -129,7 +123,7 @@ function Hello () {
129123
export default easyComp(Hello)
130124
```
131125

132-
*Make sure to wrap your component with `easyComp` even if it uses global stores only and no local state.*
126+
**Make sure to wrap your component with `easyComp` even if it uses global stores only and no local state.**
133127

134128
- Global stores are simple objects and there is no limitation on what you can do with them. As an example feel free to use expando properties, arrays, deeply nested objects, ES6 collections or getters/setters in your stores.
135129

0 commit comments

Comments
 (0)