Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/i-rocky/rc-iframe
IFrame component for React
https://github.com/i-rocky/rc-iframe
iframe jsx react react-components
Last synced: 29 days ago
JSON representation
IFrame component for React
- Host: GitHub
- URL: https://github.com/i-rocky/rc-iframe
- Owner: i-rocky
- License: mit
- Created: 2018-07-20T09:56:34.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-27T07:06:37.000Z (about 6 years ago)
- Last Synced: 2024-11-12T06:38:36.980Z (3 months ago)
- Topics: iframe, jsx, react, react-components
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rc-iframe
[![Build Status](https://travis-ci.org/i-rocky/rc-iframe.svg?branch=master)](https://travis-ci.org/i-rocky/rc-iframe) [![Version](https://img.shields.io/npm/v/rc-iframe.svg)](https://www.npmjs.com/package/rc-iframe)
[![Total Downloads](https://img.shields.io/npm/dt/rc-iframe.svg)](https://www.npmjs.com/package/rc-iframe)
[![License](https://img.shields.io/github/license/i-rocky/rc-iframe.svg)](https://github.com/i-rocky/rc-iframe/blob/master/LICENSE)### Installation
`npm install rc-iframe --save`
or
`yarn add rc-iframe`
### Usage
```JS
import IFrame from 'rc-iframe';export default class WhatEver extends React.Component {
state = {
text: 'Hello World',
}
render() {
return (
{ this.state.text }
);
}
}
```