🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

react-siblings

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-siblings - npm Package Compare versions

Comparing version
1.0.0
to
1.0.1
+1
-1
package.json
{
"name": "react-siblings",
"version": "1.0.0",
"version": "1.0.1",
"description": "React utility component for an array of elements (React v16+)",

@@ -5,0 +5,0 @@ "author": "mkrause",

@@ -8,2 +8,4 @@

```jsx
import Siblings from 'react-siblings';
const MyComponent = props =>

@@ -15,1 +17,10 @@ <Siblings>

```
This is equivalent to:
```jsx
const MyComponent = props => [
<div key="0">foo</div>,
<div key="1">bar</div>
];
```