forked from BinaryStudioAcademy/bsa-2022-vse-bude
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
31 lines (30 loc) · 786 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import common from './common.json';
import publicCommon from './public.json';
import personalInfo from './personal-info.json';
import home from './home.json';
import account from './account.json';
import auth from './auth.json';
import createPost from './create-post.json';
import item from './item.json';
import itemsPage from './items-page.json';
import rules from './rules.json';
import myList from './my-list.json';
import checkout from './checkout.json';
import about from './about.json';
import errors from './errors.json';
export const ua = {
home,
'account': account,
'public': publicCommon,
'personal-info': personalInfo,
'create-post': createPost,
'items-page': itemsPage,
'my-list': myList,
common,
auth,
item,
rules,
checkout,
about,
errors,
};