Vulcan/packages/vulcan-ui-bootstrap/lib/components/ui/Alert.jsx
2018-12-28 08:52:40 +09:00

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