MCPcopy Create free account
hub / github.com/reactstrap/reactstrap / Example52

Function Example52

types/reactstrap-tests.tsx:1893–1932  ·  view source on GitHub ↗
(props: any)

Source from the content-addressed store, hash-verified

1891}
1892
1893const Example52 = (props: any) => {
1894 return (
1895 <div>
1896 <InputGroup>
1897 <InputGroupText>@</InputGroupText>
1898 <Input placeholder="username" />
1899 </InputGroup>
1900 <br />
1901 <InputGroup>
1902 <InputGroupText>
1903 <Input
1904 addon
1905 type="checkbox"
1906 aria-label="Checkbox for following text input"
1907 />
1908 </InputGroupText>
1909 <Input placeholder="Check it out" />
1910 </InputGroup>
1911 <br />
1912 <InputGroup>
1913 <Input placeholder="username" />
1914 <InputGroupText>@example.com</InputGroupText>
1915 </InputGroup>
1916 <br />
1917 <InputGroup>
1918 <InputGroupText>$</InputGroupText>
1919 <InputGroupText>$</InputGroupText>
1920 <Input placeholder="Dolla dolla billz yo!" />
1921 <InputGroupText>$</InputGroupText>
1922 <InputGroupText>$</InputGroupText>
1923 </InputGroup>
1924 <br />
1925 <InputGroup>
1926 <InputGroupText>$</InputGroupText>
1927 <Input placeholder="Amount" type="number" step="1" />
1928 <InputGroupText>.00</InputGroupText>
1929 </InputGroup>
1930 </div>
1931 );
1932};
1933
1934const Example53 = (props: any) => {
1935 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…