Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 349fabe

Browse files
committed
Add @fileOverview to all .js file, closes #496
1 parent d91d7c9 commit 349fabe

File tree

13 files changed

+55
-0
lines changed

13 files changed

+55
-0
lines changed

src/App.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* @fileOverview main module that renders the app.
3+
*/
4+
15
import React, { Component } from 'react';
26
import Main from './view/main';
37

src/computed/channel.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* @fileOverview computed values that are used in channel UI components.
3+
*/
4+
15
import { computed, extendObservable } from 'mobx';
26
import { toAmountLabel, toCaps } from '../helper';
37

src/computed/invoice.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* @fileOverview computed values that are used in invoice UI components.
3+
*/
4+
15
import { computed, extendObservable } from 'mobx';
26
import { toLabel } from '../helper';
37

src/computed/loader-msg.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* @fileOverview computed values that are used in loader UI components.
3+
*/
4+
15
import { computed, extendObservable } from 'mobx';
26

37
const ComputedLoaderMsg = store => {

src/computed/notification.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* @fileOverview computed values that are used in notification UI components.
3+
*/
4+
15
import { computed, extendObservable } from 'mobx';
26
import { toCaps, formatNumber } from '../helper';
37

src/computed/payment.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* @fileOverview computed values that are used in payment UI components.
3+
*/
4+
15
import { computed, extendObservable } from 'mobx';
26
import { toSatoshis, toAmountLabel, toLabel } from '../helper';
37

src/computed/seed.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* @fileOverview computed values that are used in seed UI components.
3+
*/
4+
15
import { computed, extendObservable } from 'mobx';
26

37
const ComputedSeed = store => {

src/computed/setting.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* @fileOverview computed values that are used in settings UI components.
3+
*/
4+
15
import { computed, extendObservable } from 'mobx';
26
import { formatNumber } from '../helper';
37
import { UNITS, FIATS } from '../config';

src/computed/transaction.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* @fileOverview computed values that are used in transaction UI components.
3+
*/
4+
15
import { computed, extendObservable } from 'mobx';
26
import { toAmountLabel, toCaps } from '../helper';
37

src/computed/wallet.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* @fileOverview computed values that are used in wallet UI components.
3+
*/
4+
15
import { computed, extendObservable } from 'mobx';
26
import { toAmountLabel } from '../helper';
37
import { UNITS, FIATS } from '../config';

0 commit comments

Comments
 (0)