import React from 'react'; import { Container, Segment, Form, Input, Button, Checkbox, Grid, Menu, List } from 'semantic-ui-react'; import ConditionField from './Condition'; const stateDefault = ()=>({ groups: { "g1":{ name: "aaa" }, "g2":{ name: "bbb" } } }) class ActionLinkAdd extends React.Component { state = { ...stateDefault() } render() { let {i18n, showDialog, toggleLoading} = this.props; return ( {}}/> {}}/>
) } } export default ActionLinkAdd;