Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AddInfoWrapper #25

Merged
merged 2 commits into from
Oct 26, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions src/app.css

This file was deleted.

16 changes: 0 additions & 16 deletions src/app.js

This file was deleted.

47 changes: 35 additions & 12 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,35 @@
import React from 'react';
import { render } from 'react-dom';
import App from './app';

render(
<App />,
document.getElementById('main')
);

if (module.hot) {
module.hot.accept();
}
import { Tag } from 'reactstrap';
import { FontAwesome } from 'react-fontawesome';

// Gears:

import Alert from './components/Alert.js';
import BlockPanel from './components/BlockPanel.js';
import CurrencyInput from './components/CurrencyInput.js';
import Datapair from './components/Datapair.js';
import DateMonth from './components/datemonth/DateMonth.js';
//import Flag from './components/Flag.js';
import FormChoice from './components/FormChoice.js';
import FormRow from './components/FormRow.js';
import HelpBubble from './components/HelpBubble.js';
//import Icon from './components/Icon.js';
import PatternInput from './components/PatternInput.js';
import UnitPropertyCard from './components/UnitPropertyCard.js';

export * from 'reactstrap';

export {
// Gears
// Alert,
BlockPanel,
CurrencyInput,
Datapair,
DateMonth,
Tag as Flag, // Alias
FormChoice,
FormRow,
HelpBubble,
FontAwesome as Icon,
PatternInput,
UnitPropertyCard
};