File tree Expand file tree Collapse file tree 1 file changed +4
-13
lines changed
airbyte-webapp/src/pages/SettingsPage/pages/ConfigurationsPage Expand file tree Collapse file tree 1 file changed +4
-13
lines changed Original file line number Diff line number Diff line change 1
1
import React from "react" ;
2
2
import { FormattedMessage } from "react-intl" ;
3
- import styled from "styled-components" ;
4
3
5
4
import { HeadTitle } from "components/common/HeadTitle" ;
6
5
import { Card } from "components/ui/Card" ;
7
6
8
7
import LogsContent from "./components/LogsContent" ;
9
8
10
- const Content = styled . div `
11
- max-width: 813px;
12
- ` ;
13
-
14
- const ControlContent = styled ( Card ) `
15
- margin-top: 12px;
16
- ` ;
17
-
18
9
const ConfigurationsPage : React . FC = ( ) => {
19
10
return (
20
- < Content >
11
+ < >
21
12
< HeadTitle titles = { [ { id : "sidebar.settings" } , { id : "admin.configuration" } ] } />
22
- < ControlContent title = { < FormattedMessage id = "admin.logs" /> } >
13
+ < Card title = { < FormattedMessage id = "admin.logs" /> } >
23
14
< LogsContent />
24
- </ ControlContent >
25
- </ Content >
15
+ </ Card >
16
+ </ >
26
17
) ;
27
18
} ;
28
19
You can’t perform that action at this time.
0 commit comments