Files
spacedrive/interface/app/$libraryId/settings/library/nodes.tsx
Brendan Allan 1bd211115b Data Router (#609)
* data router time

* update pnpm.lock
2023-03-15 16:11:47 +00:00

13 lines
375 B
TypeScript

import { Heading } from '../Layout';
export const Component = () => {
return (
<>
<Heading
title="Nodes"
description="Manage the nodes connected to this library. A node is an instance of Spacedrive's backend, running on a device or server. Each node carries a copy of the database and synchronizes via peer-to-peer connections in realtime."
/>
</>
);
};