Skip to content

Instantly share code, notes, and snippets.

@momendo
momendo / Iframe.js
Last active January 3, 2019 05:02 — forked from msmfsd/Iframe.js
React iframe component
/*
Prop-types was broken out of React in 15.5
JSX USAGE: <Iframe src='http://web.site' onLoad={myOnloadFunction}/>
*/
import React, { Component } from 'react'
import ReactDOM from 'react-dom'
import PropTypes from 'prop-types'
class Iframe extends Component {