2018-02-20 02:35:31 +02:00
|
|
|
import React from 'react';
|
|
|
|
import { Margin } from 'styled-components-spacing';
|
|
|
|
import remcalc from 'remcalc';
|
|
|
|
|
|
|
|
import {
|
|
|
|
RootContainer,
|
|
|
|
PageContainer,
|
|
|
|
ViewContainer,
|
|
|
|
Message,
|
|
|
|
MessageDescription,
|
|
|
|
MessageTitle,
|
|
|
|
Divider
|
|
|
|
} from 'joyent-ui-toolkit';
|
|
|
|
|
|
|
|
import Breadcrumb from '@containers/breadcrumb';
|
|
|
|
|
|
|
|
export const Route = () => (
|
|
|
|
<ViewContainer main>
|
|
|
|
<Divider height={remcalc(30)} transparent />
|
2018-04-06 17:53:44 +03:00
|
|
|
<Margin bottom="5">
|
2018-02-20 02:35:31 +02:00
|
|
|
<Message error>
|
|
|
|
<MessageTitle>Ooops!</MessageTitle>
|
|
|
|
<MessageDescription>
|
|
|
|
An error occurred while loading your page
|
|
|
|
</MessageDescription>
|
|
|
|
</Message>
|
|
|
|
</Margin>
|
|
|
|
</ViewContainer>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default () => (
|
|
|
|
<RootContainer>
|
|
|
|
<PageContainer>
|
|
|
|
<Breadcrumb />
|
|
|
|
<Route />
|
|
|
|
</PageContainer>
|
|
|
|
</RootContainer>
|
|
|
|
);
|