Preview: http://dashboards.webkom.co/react/airframe
This commit is contained in:
Tomasz Owczarczyk
2019-08-15 00:54:44 +02:00
parent f975443095
commit 37092d1d6c
626 changed files with 56691 additions and 0 deletions

View File

@@ -0,0 +1,66 @@
import React from 'react';
import {
Container,
Row,
Col,
Table,
Card,
CardBody,
CardTitle
} from './../../../components';
import { HeaderMain } from "../../components/HeaderMain";
import { ProfileLeftNav } from "../../components/Profile/ProfileLeftNav";
import { ProfileHeader } from "../../components/Profile/ProfileHeader";
import { TrTableResponsive } from "./../../Tables/Tables/components/TrTableResponsive";
const BillingEdit = () => (
<React.Fragment>
<Container>
<HeaderMain
title="Sessions Edit"
className="mb-5 mt-4"
/>
{ /* START Content */}
<Row>
<Col lg={ 12 }>
<ProfileHeader />
</Col>
<Col lg={ 3 }>
<ProfileLeftNav />
</Col>
<Col lg={ 9 }>
<Card className="mb-3">
<CardBody>
<CardTitle tag="h6" className="mb-0">
Billing History
</CardTitle>
</CardBody>
{ /* START Table */}
<Table className="mb-0" responsive>
<thead>
<tr>
<th className="bt-0">#</th>
<th className="bt-0">Browser & OS</th>
<th className="bt-0">IP</th>
<th className="bt-0">Location</th>
<th className="bt-0">Signed In</th>
<th className="text-right">
Action
</th>
</tr>
</thead>
<tbody>
<TrTableResponsive />
</tbody>
</Table>
{ /* END Table */}
</Card>
</Col>
</Row>
{ /* END Content */}
</Container>
</React.Fragment>
);
export default BillingEdit;

View File

@@ -0,0 +1,3 @@
import SessionsEdit from './SessionsEdit';
export default SessionsEdit;