mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-21 15:07:54 -04:00
13 lines
375 B
TypeScript
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."
|
|
/>
|
|
</>
|
|
);
|
|
};
|