mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-09 01:37:24 +03:00
18 lines
420 B
TypeScript
18 lines
420 B
TypeScript
import { FC } from 'react';
|
|
import { Row } from 'reactstrap';
|
|
import NoMenuLayout from '../common/NoMenuLayout';
|
|
|
|
const Settings = (RealTimeUpdates: FC, ShortUrlCreation: FC) => () => (
|
|
<NoMenuLayout>
|
|
<Row>
|
|
<div className="col-lg-6">
|
|
<RealTimeUpdates />
|
|
</div>
|
|
<div className="col-lg-6">
|
|
<ShortUrlCreation />
|
|
</div>
|
|
</Row>
|
|
</NoMenuLayout>
|
|
);
|
|
|
|
export default Settings;
|