mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-09 01:37:24 +03:00
10 lines
225 B
TypeScript
10 lines
225 B
TypeScript
import React, { FC } from 'react';
|
|
import NoMenuLayout from '../common/NoMenuLayout';
|
|
|
|
const Settings = (RealTimeUpdates: FC) => () => (
|
|
<NoMenuLayout>
|
|
<RealTimeUpdates />
|
|
</NoMenuLayout>
|
|
);
|
|
|
|
export default Settings;
|