31 lines
682 B
TypeScript
Raw Normal View History

import { Col, Row } from 'antd';
import ExplorerCard from 'components/ExplorerCard';
import LogExplorerQuerySection from 'container/LogExplorerQuerySection';
import LogsExplorerViews from 'container/LogsExplorerViews';
import LogsTopNav from 'container/LogsTopNav';
// ** Styles
import { WrapperStyled } from './styles';
function LogsExplorer(): JSX.Element {
return (
<>
<LogsTopNav />
<WrapperStyled>
<Row gutter={[0, 16]}>
<Col xs={24}>
<ExplorerCard>
<LogExplorerQuerySection />
</ExplorerCard>
</Col>
<Col xs={24}>
<LogsExplorerViews />
</Col>
</Row>
</WrapperStyled>
</>
);
}
export default LogsExplorer;