(props: any)
| 797 | }; |
| 798 | |
| 799 | const Example29 = (props: any) => { |
| 800 | return ( |
| 801 | <div> |
| 802 | <Card> |
| 803 | <CardHeader>Header</CardHeader> |
| 804 | <CardBody> |
| 805 | <CardTitle>Special Title Treatment</CardTitle> |
| 806 | <CardText> |
| 807 | With supporting text below as a natural lead-in to additional |
| 808 | content. |
| 809 | </CardText> |
| 810 | <Button>Go somewhere</Button> |
| 811 | </CardBody> |
| 812 | <CardFooter>Footer</CardFooter> |
| 813 | </Card> |
| 814 | |
| 815 | <Card> |
| 816 | <CardHeader tag="h3">Featured</CardHeader> |
| 817 | <CardBody> |
| 818 | <CardTitle>Special Title Treatment</CardTitle> |
| 819 | <CardText> |
| 820 | With supporting text below as a natural lead-in to additional |
| 821 | content. |
| 822 | </CardText> |
| 823 | <Button>Go somewhere</Button> |
| 824 | </CardBody> |
| 825 | <CardFooter className="text-muted">Footer</CardFooter> |
| 826 | </Card> |
| 827 | </div> |
| 828 | ); |
| 829 | }; |
| 830 | |
| 831 | const Example30 = (props: any) => { |
| 832 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…