Vulcan/packages/vulcan-ui-bootstrap/lib/components/ui/Alert.jsx
2018-12-31 15:22:17 +09:00

8 lines
No EOL
292 B
JavaScript

import React from 'react';
import Alert from 'react-bootstrap/lib/Alert';
import { registerComponent } from 'meteor/vulcan:lib';
const BootstrapAlert = ({ children, variant, ...rest }) =>
<Alert variant={variant} {...rest}>{children}</Alert>;
registerComponent('Alert', BootstrapAlert);