This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import PropTypes from 'prop-types' | |
import styled from 'styled-components' | |
import styledBy from 'styled-by' | |
const GlobalCssValues = ['initial', 'inherit', 'unset'] | |
const WrapValue = ['nowrap', 'wrap', 'wrap-reverse', ...GlobalCssValues] | |
const JustifyValue = [ | |
'center', | |
'start', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import { connect } from 'react-redux' | |
import { setLanguage } from 'redux-i18n' | |
import { BrowserRouter as Router } from 'react-router-dom' | |
import Route from 'services/router' | |
import * as authData from 'data/auth' | |
import * as persist from 'data/persist' |
NewerOlder