mirror of
https://github.com/apotdevin/thunderhub.git
synced 2025-02-22 22:25:21 +01:00
14 lines
359 B
TypeScript
14 lines
359 B
TypeScript
import React from 'react';
|
|
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 />
|
|
</>
|
|
);
|
|
|
|
export default ToolsView;
|