import { Link } from "react-router-dom"; import { listOperatorNames } from "@stirling-pdf/shared-operations/src/workflow/operatorAccessor"; import { OperatorCard } from "../components/OperatorCard"; 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 () }) }
); } export default Home;