mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
code cleanup
This commit is contained in:
parent
606c88d777
commit
ef71e55543
23 changed files with 108 additions and 109 deletions
|
@ -3,10 +3,10 @@ import { connect } from 'react-redux';
|
|||
import { bindActionCreators } from 'redux';
|
||||
import { hot } from 'react-hot-loader';
|
||||
import { ConnectedRouter } from "connected-react-router";
|
||||
import { history } from "$redux/store";
|
||||
import { history } from "~/redux/store";
|
||||
import { NavLink, Switch, Route } from 'react-router-dom';
|
||||
import { FlowLayout } from "$containers/FlowLayout";
|
||||
import { LoginLayout } from "$containers/LoginLayout";
|
||||
import { FlowLayout } from "~/containers/FlowLayout";
|
||||
import { LoginLayout } from "~/containers/LoginLayout";
|
||||
|
||||
interface IAppProps {}
|
||||
interface IAppState {}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import * as React from 'react';
|
||||
import { MainLayout } from "$containers/MainLayout";
|
||||
import { HeroPlaceholder } from "$components/flow/HeroPlaceholder";
|
||||
import { TestGrid } from "$components/flow/TestGrid";
|
||||
import { MainLayout } from "~/containers/MainLayout";
|
||||
import { HeroPlaceholder } from "~/components/flow/HeroPlaceholder";
|
||||
import { TestGrid } from "~/components/flow/TestGrid";
|
||||
// const style = require('./style.scss');
|
||||
|
||||
export const FlowLayout = () => (
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import * as React from 'react';
|
||||
import { LoginForm } from '$components/login/LoginForm';
|
||||
import { Header } from "$components/main/Header";
|
||||
import { GodRays } from "$components/main/GodRays";
|
||||
import { LoginForm } from '~/components/login/LoginForm';
|
||||
import { Header } from "~/components/main/Header";
|
||||
import { GodRays } from "~/components/main/GodRays";
|
||||
|
||||
const style = require('./style.scss');
|
||||
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
import * as React from 'react';
|
||||
import { SidePane } from "$components/main/SidePane";
|
||||
import { SidePane } from "~/components/main/SidePane";
|
||||
import { Header } from "~/components/main/Header";
|
||||
|
||||
const style = require('./style.scss');
|
||||
import * as styles from './styles.scss';
|
||||
|
||||
export const MainLayout = ({ children }) => (
|
||||
<div className={style.wrapper}>
|
||||
<div className={styles.wrapper}>
|
||||
{
|
||||
// <Header />
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue