Socialify

Folder ..

Viewing index.ts
9 lines (7 loc) • 128.0 B

1
2
3
4
5
6
7
8
9
import month from './month';
import weekday from './weekday';

const date: any = {
  month,
  weekday,
};

export default date;