Skip to content

Commit

Permalink
feat: add react-bootstrap alert
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Butterworth committed Jul 15, 2020
1 parent c9c2632 commit 8b86f77
Show file tree
Hide file tree
Showing 6 changed files with 291 additions and 1 deletion.
214 changes: 213 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Expand Up @@ -38,6 +38,7 @@
"font-awesome": "^4.7.0",
"mailto-link": "^1.0.0",
"prop-types": "^15.7.2",
"react-bootstrap": "^1.2.2",
"react-proptype-conditional-require": "^1.0.4",
"react-responsive": "^6.1.1",
"react-transition-group": "^4.0.0",
Expand Down
3 changes: 3 additions & 0 deletions src/Alert/index.jsx
@@ -0,0 +1,3 @@
import Alert from 'react-bootstrap/Alert';

export default Alert;
1 change: 1 addition & 0 deletions src/index.js
@@ -1,3 +1,4 @@
export { default as Alert } from './Alert';
export { default as asInput } from './asInput';
export { default as Breadcrumb } from './Breadcrumb';
export { default as Button } from './Button';
Expand Down
1 change: 1 addition & 0 deletions www/src/components/navigation.jsx
Expand Up @@ -24,6 +24,7 @@ const menu = [
{
section: 'COMPONENTS',
items: [
{ title: 'Alert', url: '/components/alert' },
{ title: 'Breadcrumbs', url: '/components/breadcrumbs' },
{ title: 'Button', url: '/components/button' },
{ title: 'Checkbox', url: '/components/checkbox' },
Expand Down

0 comments on commit 8b86f77

Please sign in to comment.