mirror of
https://github.com/fullstack-cash/fullstack-gatsby-theme-bch-wallet.git
synced 2026-09-22 01:02:06 -07:00
37 lines
791 B
JavaScript
37 lines
791 B
JavaScript
import React from "react"
|
|
|
|
import { Content, Row, Col, Box, Button } from "adminlte-2-react"
|
|
|
|
class Example extends React.Component {
|
|
state = {}
|
|
|
|
render() {
|
|
return (
|
|
<Content
|
|
title="Test"
|
|
subTitle="Getting started with adminlte-2-react"
|
|
browserTitle="Hello World"
|
|
>
|
|
<Row>
|
|
<Col xs={6}>
|
|
<Box
|
|
title="My first box"
|
|
type="primary"
|
|
closable
|
|
collapsable
|
|
footer={<Button type="danger" text="Danger Button" />}
|
|
>
|
|
Hello World
|
|
</Box>
|
|
</Col>
|
|
<Col xs={6}>
|
|
<Box title="Another box">Content goes here</Box>
|
|
</Col>
|
|
</Row>
|
|
</Content>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default Example
|