UNPKG

solid-panes

Version:

Solid-compatible Panes: applets and views for the mashlib and databrowser

20 lines (16 loc) 426 B
import { LiveStore } from 'rdflib' import { initFooter } from 'solid-ui' /** * links in the footer */ const SOLID_PROJECT_URL = 'https://solidproject.org' const SOLID_PROJECT_NAME = 'solidproject.org' export function createFooter (store: LiveStore) { initFooter(store, setFooterOptions()) } function setFooterOptions () { return { solidProjectUrl: SOLID_PROJECT_URL, solidProjectName: SOLID_PROJECT_NAME } }