< JavaScript Code Conventions
- Use
TODO + initialscomments to label any code as not production ready
// incorrect
const denomination = {
currencyCode: 'USD' // Yikes!! this should definitely be changed
}
// correct
const denomination = {
currencyCode: 'USD' // Todo: Replace hard coded currencies with library -paulvp
}
- Only use named exports
// incorrect
export default class FullWalletListRow extends Component<OwnProps> {
// correct
export class FullWalletListRow extends Component<OwnProps> {