updated aliases

This commit is contained in:
Fedor Katurov 2020-01-08 14:38:20 +07:00
parent af8d270460
commit e950d98b73
74 changed files with 300 additions and 390 deletions

View file

@ -1,5 +1,5 @@
import React from 'react';
import { Icon } from '$components/panels/Icon';
import { Icon } from '~/components/panels/Icon';
type Props = {
onClick: () => void,

View file

@ -1,7 +1,7 @@
// @flow
import React from "react";
import { UserPicture } from "$components/user/UserPicture";
import { IUser } from "$constants/auth";
import { UserPicture } from "~/components/user/UserPicture";
import { IUser } from "~/constants/auth";
interface Props {
user: IUser;

View file

@ -1,6 +1,6 @@
import React from 'react';
import { APP_INFO } from '$constants/app_info';
import { userLogout } from "$redux/user/actions";
import { APP_INFO } from '~/constants/app_info';
import { userLogout } from "~/redux/user/actions";
interface Props {
userLogout: typeof userLogout,