import { Link } from "react-router-dom"; import { getOperatorByName, getSchemaByName, listOperatorNames } from "@stirling-pdf/shared-operations/src/workflow/operatorAccessor"; import styles from './home.module.css'; function Home() { const operators = listOperatorNames(); return (

Stirling PDF

Your locally hosted one-stop-shop for all your PDF needs

{/**TODO: Search bar */}
{ operators.map((operator) => { return (
{operator}
) }) }
Dynamic
); } export default Home;