Skip to content

Instantly share code, notes, and snippets.

@j-
Created October 30, 2018 23:09
Show Gist options
  • Save j-/76ff8a7c1b64127b8a773b631d763e38 to your computer and use it in GitHub Desktop.
Save j-/76ff8a7c1b64127b8a773b631d763e38 to your computer and use it in GitHub Desktop.
import * as React from 'react';
export interface Props {
children: number;
}
const Dollars: React.StatelessComponent<Props> = ({ children }) => (
<>
{children.toLocaleString('en-AU', {
style: 'currency',
currency: 'AUD',
})}
</>
);
export default Dollars;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment