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/src/components/Bootstrap.tsx

14 lines
262 B
TypeScript

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