GitXplorerGitXplorer
m

pass-props

public
1 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
510a4531acd0955c0ee8502da2bdd648827cc87f

Change typo stuff

committed 9 years ago
Unverified
5218d8e9625209805d29a6a86d88fc12b9936be8

Add build

committed 9 years ago
Unverified
8659c71d844c5f04ebadee629d6488020da1b935

Init base functionallity

committed 9 years ago

README

The README file for this repository.

pass-props

A tiny library which gives you the possibility to pass specific props.

Install

npm i --save pass-props

Usage

import React from 'react';
import { render } from 'react-dom';
import passProps from 'pass-props';
import NewsPost from 'path/to/component';

const SomeComponent = (props) => <NewsPost
  newsId={ props.id }
  { ...passProps(props, 'style') }
/>;

render(
  <SomeComponent
    id={ 1 }
    style={ { backgroundColor: 'red' } }
    className="ignored"
  />,
  document.getElementById('somewhere')
);

License

The MIT License (MIT)

Copyright (c) 2016 Marc Binder marcandrebinder@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.