Created
January 27, 2018 10:38
-
-
Save 11111000000/25b8ce3594efff2a343704a462570fed to your computer and use it in GitHub Desktop.
"Муравьиный лев" - модуль и идея, как заменить тяжёлую библиотеку компонентов Antd на проекте.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Муравьиный лев (antd-killer) | |
*/ | |
import * as Layout from 'modules/layout'; | |
import * as Menu from 'modules/menus'; | |
export { Button } from 'modules/buttons' | |
export { Row, Col } from 'react-simple-flex-grid' | |
export { Layout } | |
export { message, Tooltip } from 'modules/messages' | |
export { TextField, NumberField, SpanField, InputNumber } from 'modules/forms' | |
export { Form } from 'modules/forms' | |
export { Table } from 'react-table' | |
export { Menu } | |
export const Card = (props) => ( | |
<div className='cap-card'> | |
{ props.children } | |
</div> | |
) | |
export { Icon } from 'modules/icons' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment