()
| 2236 | |
| 2237 | class Example65 extends React.Component { |
| 2238 | render() { |
| 2239 | return ( |
| 2240 | <div> |
| 2241 | <h3>Anchors </h3> |
| 2242 | <p> |
| 2243 | Be sure to{' '} |
| 2244 | <strong> |
| 2245 | not use the standard <code>.btn</code> classes here |
| 2246 | </strong> |
| 2247 | . |
| 2248 | </p> |
| 2249 | <ListGroup> |
| 2250 | <ListGroupItem active tag="a" href="#" action> |
| 2251 | Cras justo odio |
| 2252 | </ListGroupItem> |
| 2253 | <ListGroupItem tag="a" href="#" action> |
| 2254 | Dapibus ac facilisis in |
| 2255 | </ListGroupItem> |
| 2256 | <ListGroupItem tag="a" href="#" action> |
| 2257 | Morbi leo risus |
| 2258 | </ListGroupItem> |
| 2259 | <ListGroupItem tag="a" href="#" action> |
| 2260 | Porta ac consectetur ac |
| 2261 | </ListGroupItem> |
| 2262 | <ListGroupItem disabled tag="a" href="#" action> |
| 2263 | Vestibulum at eros |
| 2264 | </ListGroupItem> |
| 2265 | </ListGroup> |
| 2266 | <p /> |
| 2267 | <h3>Buttons </h3> |
| 2268 | <ListGroup> |
| 2269 | <ListGroupItem active tag="button" action> |
| 2270 | Cras justo odio |
| 2271 | </ListGroupItem> |
| 2272 | <ListGroupItem tag="button" action> |
| 2273 | Dapibus ac facilisis in |
| 2274 | </ListGroupItem> |
| 2275 | <ListGroupItem tag="button" action> |
| 2276 | Morbi leo risus |
| 2277 | </ListGroupItem> |
| 2278 | <ListGroupItem tag="button" action> |
| 2279 | Porta ac consectetur ac |
| 2280 | </ListGroupItem> |
| 2281 | <ListGroupItem disabled tag="button" action> |
| 2282 | Vestibulum at eros |
| 2283 | </ListGroupItem> |
| 2284 | </ListGroup> |
| 2285 | </div> |
| 2286 | ); |
| 2287 | } |
| 2288 | } |
| 2289 | |
| 2290 | class Example66 extends React.Component { |
nothing calls this directly
no outgoing calls
no test coverage detected