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 = () => ( { _.times(9, (index) => ( { randomArray(name) } { randomArray(tr2013) } { randomArray(tr2013) } { randomArray(ttm) } )) } ) export { TrTableSummary };