芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/reactstrap/src/UncontrolledAlert.js
import React, { Component } from 'react'; import Alert from './Alert'; class UncontrolledAlert extends Component { constructor(props) { super(props); this.state = { isOpen: true }; this.toggle = this.toggle.bind(this); } toggle() { this.setState({ isOpen: !this.state.isOpen }); } render() { return
; } } export default UncontrolledAlert;