Skip to content

Instantly share code, notes, and snippets.

@ryanluker
Last active May 11, 2016 05:55
Show Gist options
  • Save ryanluker/541522481ed4e07e460e8a01b3149e21 to your computer and use it in GitHub Desktop.
Save ryanluker/541522481ed4e07e460e8a01b3149e21 to your computer and use it in GitHub Desktop.
price label stateless component
import * as React from "react";
import helpers from "../libs/helpers";
let h = new helpers();
export const PriceLabel = (props: {price: number}) => (
<span className="price">{h.formatPrice(props.price)}</span>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment