Skip to content

Hook useSystemManager()

Returns

Example

tsx
import { useSystemManager } from "@prozilla-os/core";

export function Example() {
	const { systemName, tagLine } = useSystemManager();

	return <h1>Welcome to {systemName} - {tagLine}</h1>;
}

Built by Prozilla