File size: 303 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import AppPromo from '..';
export default function AppPromoExample() {
return (
<>
<AppPromo />
<AppPromo title="This is the title" />
<AppPromo iconSize="199" />
<AppPromo iconSize="32" subheader="this is a subheader" hasQRCode />
</>
);
}
AppPromoExample.displayName = 'AppPromo';
|