You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
filepizza/lib/components/Bootstrap.js

13 lines
237 B
JavaScript

import React from 'react'
export default class Bootstrap extends React.Component {
render() {
return <script
id="bootstrap"
type="application/json"
dangerouslySetInnerHTML={{ __html: this.props.data}} />
}
}