Returns the applications available in the dashboard.
Suspends until the dashboard publishes its application list; a cleared list is empty. Throws a TopicError to the nearest error boundary when the dashboard fails to load applications.
TopicError
function Applications() { const applications = useApplications() return applications.map((application) => <div key={application.id}>{application.title}</div>)} Copy
function Applications() { const applications = useApplications() return applications.map((application) => <div key={application.id}>{application.title}</div>)}
Returns the applications available in the dashboard.
Suspends until the dashboard publishes its application list; a cleared list is empty. Throws a
TopicErrorto the nearest error boundary when the dashboard fails to load applications.