Merge branch 'develop' of https://gitlab.com/empatnusabangsa/ppob/ppob-frontend into develop
This commit is contained in:
commit
324dd47709
|
@ -1,12 +1,13 @@
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import {Button, Card, Col, Input, Row} from "antd";
|
import {Card, Col, Row, Typography} from "antd";
|
||||||
import {BreadcumbComponent} from "../../component/BreadcumbComponent";
|
import {BreadcumbComponent} from "../../component/BreadcumbComponent";
|
||||||
import {FilterOutlined, PlusSquareOutlined} from "@ant-design/icons";
|
|
||||||
import {LINKS} from "../../routes/app";
|
import {LINKS} from "../../routes/app";
|
||||||
|
import {useStore} from "../../utils/useStore";
|
||||||
|
|
||||||
const {Search} = Input;
|
const {Title, Text} = Typography;
|
||||||
|
|
||||||
export const Profile = () => {
|
export const Profile = () => {
|
||||||
|
const store = useStore();
|
||||||
const routeData = [
|
const routeData = [
|
||||||
{
|
{
|
||||||
route: LINKS.HOME,
|
route: LINKS.HOME,
|
||||||
|
@ -23,24 +24,27 @@ export const Profile = () => {
|
||||||
<BreadcumbComponent data={routeData}/>
|
<BreadcumbComponent data={routeData}/>
|
||||||
<Card>
|
<Card>
|
||||||
<Row style={{marginBottom: 20}}>
|
<Row style={{marginBottom: 20}}>
|
||||||
<Col span={12}>
|
<Col span={24}>
|
||||||
<Button>
|
<div>
|
||||||
<FilterOutlined/>
|
<Title strong>Profile</Title>
|
||||||
Filter
|
<Row>
|
||||||
</Button>
|
<Col span={10}>
|
||||||
|
<Text strong>Name</Text>
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={12} style={{textAlign: "right"}}>
|
<Col span={14}>
|
||||||
<Search
|
<Text>{store.authentication.userData.username}</Text>
|
||||||
placeholder="input search text"
|
</Col>
|
||||||
style={{width: 200, marginRight: 10}}
|
<Col span={10}>
|
||||||
/>
|
<Text strong>Role</Text>
|
||||||
<Button onClick={() => {
|
</Col>
|
||||||
}}>
|
<Col span={14}>
|
||||||
<PlusSquareOutlined/> New
|
<Text>{store.authentication.userData.role}</Text>
|
||||||
</Button>
|
|
||||||
</Col>
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
<div></div>
|
</div>
|
||||||
|
</Col>
|
||||||
|
</Row>
|
||||||
|
<div/>
|
||||||
</Card>
|
</Card>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user