```js
import { InlineField, Form, InputGroup } from 'frontend-react-components';

<InlineField
    controlId="copyright"
    labelText="copyright"
    isRequired
>
    <InputGroup>
        <InputGroup.Prepend>
            <InputGroup.Text>©</InputGroup.Text>
        </InputGroup.Prepend>
        <Form.Control
            type="text"
            value=""
            onChange={ () => {} }
        />
    </InputGroup>
</InlineField>
```
