import React from 'react' import Table from '../_table' const TableAlignmentColumn = (props) => { return (
{'Column 1'} {'Column 2'} {'Column 3'} {'Rating'} {'Money'}
{'Value 1'} {'Value 2'} {'Value 3'} {'3'} {'$57.32'}
{'Value 1'} {'Value 2'} {'Value 3'} {'2'} {'$5,657.08'}
{'Value 1'} {'Value 2'} {'Value 3'} {'4'} {'$358.77'}
) } export default TableAlignmentColumn