import * as React from "react"; import * as System from "~/components/system"; import GLRenderer from "~/components/three/GLRenderer"; import SystemPage from "~/components/system/SystemPage"; import ViewSourceLink from "~/components/system/ViewSourceLink"; import CodeBlock from "~/components/system/CodeBlock"; export default class SystemPageGlobe extends React.Component { render() { return ( Globe

The Globe component is used to show peers and file transfers on the Filecoin network.


Imports

Import React and the GLRenderer Components. Unfortunately the GLRenderer is not usable outside of this application.

{`import * as React from "react"; import GLRenderer from "~/components/three/GLRenderer";`}

Usage

Declare the Globe component. Specify{" "} countries to be true to include markers for each country.
{`class ExampleOne extends React.Component { render() { return ( ); } }`}

Output

); } }