react-jam-ui
Version:
React JAM UI components
53 lines (47 loc) • 2.21 kB
JavaScript
import Layout from './components/Layout'
import Loader from './components/Loader'
import Grid from './components/Grid'
import Button from './components/Button'
import Counter from './components/Counter'
import Icons from './components/Icons'
import Input from './components/Input'
import ImageGallery from './components/ImageGallery'
import Checkbox from './components/Checkbox'
import Radio from './components/Radio'
import Select from './components/Select'
import Form from './components/Form'
import DatePicker from './components/DatePicker'
/*exports.Layout = Layout;
exports.Grid = Grid;
exports.Button = Button;
exports.Counter = Counter;
exports.Input = Input;
exports.Checkbox = Checkbox;
exports.Radio = Radio;
exports.Select = Select;
exports.Form = Form;*/
export default {
Layout,
Loader,
Grid,
Button,
Counter,
Icons,
Input,
ImageGallery,
Checkbox,
Radio,
Select,
Form,
DatePicker
}
/*export { PageNotification, PageNotificationProps } from "./page-notification/page-notification";
export { DeviceCard, DeviceSignatureModal, DeviceFrameSize } from "./device-card";
export { Highchart, HighchartProps, defaultHighchartsAxisConfig, columnSeriesDefaults, mapSeriesDefaults, lineSeriesDefaults, defaultHighchartsConfig, defaultHighchartsFlushConfig, formatChartDate } from './highcharts/highchart';
export { HighMap, HighMapProps, defaultHighmapsConfig } from './highcharts/highmap';
export { default as Checkbox } from "@xamarin/checkbox";
export { default as GenericTable, Cell, RowHeight, TableProps, RowProps, CellProps, TableState, SortOptions, InjectedRowProps, Column, RowInfo } from "@xamarin/table";
export { default as spliceRows } from "./table-addons/splice-rows";
export { createTable, createRow, createTableComponents, createTestRow, createTestGroupRow, AnyTable as Table, AnyRow as Row, AnyTestGroupRow as TestGroupRow, AnyTestRow as TestRow } from "./table-addons/generics";
// prefix components with `Grid` to avoid naming conflicts.
export { Grid, GridProps, GridSpacing, Row as GridRow, RowProps as GridRowProps, Col as GridCol, ColProps as GridColProps, RowCol as GridRowCol, RowColProps as GridRowColProps } from "./grid";*/