Skip to content

Commit 4e6f296

Browse files
committed
chore: add gh actions badge
1 parent 2ab168d commit 4e6f296

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
![NPM license](https://img.shields.io/npm/l/react-split-pane.svg?style=flat)
55
[![NPM total downloads](https://img.shields.io/npm/dt/react-split-pane.svg?style=flat)](https://npmcharts.com/compare/react-split-pane?minimal=true)
66
[![NPM monthly downloads](https://img.shields.io/npm/dm/react-split-pane.svg?style=flat)](https://npmcharts.com/compare/react-split-pane?minimal=true)
7-
[![Build Status](https://img.shields.io/travis/tomkp/react-split-pane/master.svg?style=flat)](https://travis-ci.org/tomkp/react-split-pane)
7+
![Build Test](https://github.com/tomkp/react-split-pane/workflows/Build%20Test/badge.svg)
88
[![Coverage Status](https://img.shields.io/coveralls/tomkp/react-split-pane/master.svg?style=flat)](https://coveralls.io/r/tomkp/react-split-pane)
99

1010
Split-Pane React component, can be nested or split vertically or horizontally!
1111

1212
## Installing
1313

14-
```sh
14+
````sh
1515
npm install react-split-pane
1616

1717
# or if you use yarn
@@ -25,7 +25,7 @@ yarn add react-split-pane
2525
<div />
2626
<div />
2727
</SplitPane>
28-
```
28+
````
2929
3030
```jsx
3131
<SplitPane split="vertical" minSize={50}>
@@ -110,7 +110,7 @@ could do something like the following:
110110
split="vertical"
111111
minSize={50}
112112
defaultSize={parseInt(localStorage.getItem('splitPos'), 10)}
113-
onChange={size => localStorage.setItem('splitPos', size)}
113+
onChange={(size) => localStorage.setItem('splitPos', size)}
114114
>
115115
<div />
116116
<div />

0 commit comments

Comments
 (0)