mirror of
https://github.com/apotdevin/thunderhub.git
synced 2025-02-22 14:22:33 +01:00
* chore: 🔧 change withApollo * feat: ✨ set cookie from server * chore: 🔧 remove bcrypt dep * fix: 🐛 initialize check * chore: 🔧 remove cookies correctly * fix: 🐛 status type
22 lines
562 B
TypeScript
22 lines
562 B
TypeScript
import React from 'react';
|
|
import { GridWrapper } from 'src/components/gridWrapper/GridWrapper';
|
|
import { withApollo } from 'config/client';
|
|
import { BackupsView } from '../src/views/tools/backups/Backups';
|
|
import { MessagesView } from '../src/views/tools/messages/Messages';
|
|
import { WalletVersion } from '../src/views/tools/WalletVersion';
|
|
|
|
const ToolsView = () => (
|
|
<>
|
|
<BackupsView />
|
|
<MessagesView />
|
|
<WalletVersion />
|
|
</>
|
|
);
|
|
|
|
const Wrapped = () => (
|
|
<GridWrapper>
|
|
<ToolsView />
|
|
</GridWrapper>
|
|
);
|
|
|
|
export default withApollo(Wrapped);
|