(props: any)
| 1932 | }; |
| 1933 | |
| 1934 | const Example53 = (props: any) => { |
| 1935 | return ( |
| 1936 | <div> |
| 1937 | <InputGroup> |
| 1938 | <InputGroupText>To the Left!</InputGroupText> |
| 1939 | <Input /> |
| 1940 | </InputGroup> |
| 1941 | <br /> |
| 1942 | <InputGroup> |
| 1943 | <Input /> |
| 1944 | <InputGroupText>To the Right!</InputGroupText> |
| 1945 | </InputGroup> |
| 1946 | <br /> |
| 1947 | <InputGroup> |
| 1948 | <InputGroupText>To the Left!</InputGroupText> |
| 1949 | <Input placeholder="and..." /> |
| 1950 | <InputGroupText>To the Right!</InputGroupText> |
| 1951 | </InputGroup> |
| 1952 | </div> |
| 1953 | ); |
| 1954 | }; |
| 1955 | |
| 1956 | const Example54 = (props: any) => { |
| 1957 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…