(props: any)
| 769 | }; |
| 770 | |
| 771 | const Example28 = (props: any) => { |
| 772 | return ( |
| 773 | <div> |
| 774 | <Card body> |
| 775 | <CardTitle>Special Title Treatment</CardTitle> |
| 776 | <CardText> |
| 777 | With supporting text below as a natural lead-in to additional content. |
| 778 | </CardText> |
| 779 | <Button>Go somewhere</Button> |
| 780 | </Card> |
| 781 | <Card body className="text-center"> |
| 782 | <CardTitle>Special Title Treatment</CardTitle> |
| 783 | <CardText> |
| 784 | With supporting text below as a natural lead-in to additional content. |
| 785 | </CardText> |
| 786 | <Button>Go somewhere</Button> |
| 787 | </Card> |
| 788 | <Card body className="text-right"> |
| 789 | <CardTitle>Special Title Treatment</CardTitle> |
| 790 | <CardText> |
| 791 | With supporting text below as a natural lead-in to additional content. |
| 792 | </CardText> |
| 793 | <Button>Go somewhere</Button> |
| 794 | </Card> |
| 795 | </div> |
| 796 | ); |
| 797 | }; |
| 798 | |
| 799 | const Example29 = (props: any) => { |
| 800 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…