import { getLocale } from '@gm-pc/locales' import React from 'react' import _ from 'lodash' import { Flex } from '../flex' const weekDays = [ getLocale('week__日'), getLocale('week__一'), getLocale('week__二'), getLocale('week__三'), getLocale('week__四'), getLocale('week__五'), getLocale('week__六'), ] const Week = () => { return ( {_.map(weekDays, (v, i) => ( {v} ))} ) } export default Week