(props: any)
| 2036 | }; |
| 2037 | |
| 2038 | const Example58 = (props: any) => { |
| 2039 | return ( |
| 2040 | <div> |
| 2041 | <InputGroup> |
| 2042 | <InputGroupText>To the Left!</InputGroupText> |
| 2043 | <Input /> |
| 2044 | </InputGroup> |
| 2045 | <br /> |
| 2046 | <InputGroup> |
| 2047 | <Input /> |
| 2048 | <InputGroupText color="secondary"> |
| 2049 | To the Right! |
| 2050 | </InputGroupText> |
| 2051 | </InputGroup> |
| 2052 | <br /> |
| 2053 | <InputGroup> |
| 2054 | <InputGroupText color="danger"> |
| 2055 | To the Left! |
| 2056 | </InputGroupText> |
| 2057 | <Input placeholder="and..." /> |
| 2058 | <InputGroupText color="success"> |
| 2059 | To the Right! |
| 2060 | </InputGroupText> |
| 2061 | </InputGroup> |
| 2062 | </div> |
| 2063 | ); |
| 2064 | }; |
| 2065 | |
| 2066 | class Example61 extends React.Component { |
| 2067 | render() { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…