Vulcan/packages/vulcan-ui-bootstrap/lib/components/ui/Alert.jsx

8 lines
No EOL
291 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 bsStyle={variant} {...rest}>{children}</Alert>
registerComponent('Alert', BootstrapAlert);