Skip to content

Commit

Permalink
remove: view Setting 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
KimKyuHoi committed Jun 9, 2024
1 parent 1dc1408 commit 828b898
Showing 1 changed file with 1 addition and 23 deletions.
24 changes: 1 addition & 23 deletions src/pages/companies/CompaniesBox.tsx
Original file line number Diff line number Diff line change
@@ -1,31 +1,14 @@
import { Layout, Button, theme } from 'antd';
import styled from 'styled-components';
import { Layout, theme } from 'antd';

import CompanyAgGrid from '@finnect/pages/companies/components/CompanyAgGrid';

import { SettingOutlined } from '@ant-design/icons';

const { Content } = Layout;

const ButtonLayout = styled.div`
display: flex;
margin-bottom: 24px;
width: 100%;
justify-content: space-between;
`;

const CompaniesBox = () => {
const {
token: { colorBgContainer, borderRadiusLG },
} = theme.useToken();

const buttonStyle = {
background: '#06BA81',
borderColor: '#06BA81',
color: '#FFFFFF',
marginRight: '12px',
};

return (
<Content
style={{
Expand All @@ -39,11 +22,6 @@ const CompaniesBox = () => {
alignItems: 'stretch',
}}
>
<ButtonLayout>
<Button type='primary' icon={<SettingOutlined />} style={buttonStyle}>
View Setting
</Button>
</ButtonLayout>
<CompanyAgGrid />
</Content>
);
Expand Down

0 comments on commit 828b898

Please sign in to comment.