(props: any)
| 2142 | }; |
| 2143 | |
| 2144 | const ExampleRowColumns = (props: any) => { |
| 2145 | return ( |
| 2146 | <Container> |
| 2147 | <Row xs="2"> |
| 2148 | <Col>Column</Col> |
| 2149 | <Col>Column</Col> |
| 2150 | <Col>Column</Col> |
| 2151 | <Col>Column</Col> |
| 2152 | </Row> |
| 2153 | <Row xs="3"> |
| 2154 | <Col>Column</Col> |
| 2155 | <Col>Column</Col> |
| 2156 | <Col>Column</Col> |
| 2157 | <Col>Column</Col> |
| 2158 | </Row> |
| 2159 | <Row xs="4"> |
| 2160 | <Col>Column</Col> |
| 2161 | <Col>Column</Col> |
| 2162 | <Col>Column</Col> |
| 2163 | <Col>Column</Col> |
| 2164 | </Row> |
| 2165 | <Row xs="4"> |
| 2166 | <Col>Column</Col> |
| 2167 | <Col>Column</Col> |
| 2168 | <Col xs="6">Column</Col> |
| 2169 | <Col>Column</Col> |
| 2170 | </Row> |
| 2171 | <Row xs="1" sm="2" md="4"> |
| 2172 | <Col>Column</Col> |
| 2173 | <Col>Column</Col> |
| 2174 | <Col>Column</Col> |
| 2175 | <Col>Column</Col> |
| 2176 | </Row> |
| 2177 | </Container> |
| 2178 | ); |
| 2179 | }; |
| 2180 | |
| 2181 | class Example62 extends React.Component { |
| 2182 | render() { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…