import React from 'react';
import _ from 'lodash';
import { randomArray } from './../../../utilities';
const name = [
Caterpillar (CAT)
,
Google (GOOGL)
,
Microsoft (MSFT)
,
Apple (AAPL)
,
Samsung Electronics (0593xq)
];
const percentForPrice = [
"34.18",
"21.34",
"19.12",
"67.82"
];
const score = [
"87",
"11",
"12"
];
const q = [
"35",
"98",
"56"
];
const v = [
"17",
"38",
"23"
];
const g = [
"45",
"15",
"16"
];
const price = [
{ randomArray(percentForPrice) }%
,
{ randomArray(percentForPrice) }%
];
const TrTableStock = () => {
return (
{
_.times(5, (index) => (
{ randomArray(name) }
|
{ randomArray(price) }
|
{ randomArray(score) }
|
{ randomArray(q) }
|
{ randomArray(v) }
|
{ randomArray(g) }
|
))
}
)
}
export { TrTableStock };