(props: any)
| 692 | |
| 693 | // ------------------ Cards |
| 694 | const Example25 = (props: any) => { |
| 695 | return ( |
| 696 | <div> |
| 697 | <Card> |
| 698 | <CardImg |
| 699 | top |
| 700 | width="100%" |
| 701 | src="https://placeholdit.imgix.net/~text?txtsize=33&txt=318%C3%97180&w=318&h=180" |
| 702 | alt="Card image cap" |
| 703 | /> |
| 704 | <CardBody> |
| 705 | <CardTitle>Card title</CardTitle> |
| 706 | <CardSubtitle>Card subtitle</CardSubtitle> |
| 707 | <CardText> |
| 708 | Some quick example text to build on the card title and make up the |
| 709 | bulk of the card's content. |
| 710 | </CardText> |
| 711 | <Button>Button</Button> |
| 712 | </CardBody> |
| 713 | </Card> |
| 714 | </div> |
| 715 | ); |
| 716 | }; |
| 717 | |
| 718 | const Example26 = (props: any) => { |
| 719 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…