48
app/routes/components/Stock/TrTableSummary.js
Executable file
48
app/routes/components/Stock/TrTableSummary.js
Executable file
@@ -0,0 +1,48 @@
|
||||
import React from 'react';
|
||||
import _ from 'lodash';
|
||||
import { randomArray } from './../../../utilities';
|
||||
|
||||
const name = [
|
||||
"PE",
|
||||
"CROIC",
|
||||
"Magic Y",
|
||||
"EV/EBITDA",
|
||||
"P/FCF",
|
||||
"ROA"
|
||||
];
|
||||
|
||||
const tr2013 = [
|
||||
"33*4%",
|
||||
"10*4",
|
||||
"2*5"
|
||||
];
|
||||
|
||||
const ttm = [
|
||||
"28*3%",
|
||||
"16*5"
|
||||
];
|
||||
|
||||
const TrTableSummary = () => (
|
||||
<React.Fragment>
|
||||
{
|
||||
_.times(9, (index) => (
|
||||
<tr key={ index }>
|
||||
<td className="align-middle text-inverse">
|
||||
{ randomArray(name) }
|
||||
</td>
|
||||
<td className="align-middle text-right">
|
||||
{ randomArray(tr2013) }
|
||||
</td>
|
||||
<td className="align-middle text-right">
|
||||
{ randomArray(tr2013) }
|
||||
</td>
|
||||
<td className="align-middle text-right">
|
||||
{ randomArray(ttm) }
|
||||
</td>
|
||||
</tr>
|
||||
))
|
||||
}
|
||||
</React.Fragment>
|
||||
)
|
||||
|
||||
export { TrTableSummary };
|
Reference in New Issue
Block a user