in frontend/src/components/CheckoutBanner.js [9:31]
function CheckoutBanner(props) {
return (
<Grid columns={2} style={topBanner}>
<Grid.Row>
<Grid.Column width={2}>
<Link to="/">
<Image src="" style={logoStyle} />
</Link>
</Grid.Column>
<Grid.Column
width={12}
verticalAlign="middle"
textAlign="center"
style={headerStyle}
>
<Header as="h1" textAlign="center">
Checkout (<QuantityText>{props.quantity}</QuantityText>)
</Header>
</Grid.Column>
</Grid.Row>
</Grid>
);
}