(prop: L, value: R)
| 2 | import { ToastContainerProps } from '../../../src'; |
| 3 | |
| 4 | function getProp<L, R>(prop: L, value: R) { |
| 5 | return value ? ( |
| 6 | <div> |
| 7 | <span className="code__props">{prop}</span> |
| 8 | </div> |
| 9 | ) : ( |
| 10 | <div> |
| 11 | <span className="code__props">{prop}</span> |
| 12 | {`={false}`} |
| 13 | </div> |
| 14 | ); |
| 15 | } |
| 16 | |
| 17 | export interface ContainerCodeProps extends Partial<ToastContainerProps> { |
| 18 | isDefaultProps: boolean; |
no outgoing calls
no test coverage detected
searching dependent graphs…