react-hold
Version:
Hold the empty presentational components in react.js
15 lines (13 loc) • 291 B
JavaScript
import Fill from './Fill';
import Square from './Square';
import Circle from './Circle';
import Text from './Text';
import Table from './Table';
export { Fill, Square, Circle, Text, Table };
export default {
Fill: Fill,
Square: Square,
Circle: Circle,
Text: Text,
Table: Table
};