(props: any)
| 949 | }; |
| 950 | |
| 951 | const Example33 = (props: any) => { |
| 952 | return ( |
| 953 | <div> |
| 954 | <Card body outline color="secondary"> |
| 955 | <CardTitle>Special Title Treatment</CardTitle> |
| 956 | <CardText> |
| 957 | With supporting text below as a natural lead-in to additional content. |
| 958 | </CardText> |
| 959 | <Button>Button</Button> |
| 960 | </Card> |
| 961 | <Card body outline color="primary"> |
| 962 | <CardTitle>Special Title Treatment</CardTitle> |
| 963 | <CardText> |
| 964 | With supporting text below as a natural lead-in to additional content. |
| 965 | </CardText> |
| 966 | <Button color="secondary">Button</Button> |
| 967 | </Card> |
| 968 | <Card body outline color="success"> |
| 969 | <CardTitle>Special Title Treatment</CardTitle> |
| 970 | <CardText> |
| 971 | With supporting text below as a natural lead-in to additional content. |
| 972 | </CardText> |
| 973 | <Button color="secondary">Button</Button> |
| 974 | </Card> |
| 975 | <Card body outline color="info"> |
| 976 | <CardTitle>Special Title Treatment</CardTitle> |
| 977 | <CardText> |
| 978 | With supporting text below as a natural lead-in to additional content. |
| 979 | </CardText> |
| 980 | <Button color="secondary">Button</Button> |
| 981 | </Card> |
| 982 | <Card body outline color="warning"> |
| 983 | <CardTitle>Special Title Treatment</CardTitle> |
| 984 | <CardText> |
| 985 | With supporting text below as a natural lead-in to additional content. |
| 986 | </CardText> |
| 987 | <Button color="secondary">Button</Button> |
| 988 | </Card> |
| 989 | <Card body outline color="danger"> |
| 990 | <CardTitle>Special Title Treatment</CardTitle> |
| 991 | <CardText> |
| 992 | With supporting text below as a natural lead-in to additional content. |
| 993 | </CardText> |
| 994 | <Button color="secondary">Button</Button> |
| 995 | </Card> |
| 996 | </div> |
| 997 | ); |
| 998 | }; |
| 999 | |
| 1000 | const Example34 = (props: any) => { |
| 1001 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…