import { currentProductAtom } from "@/_helpers/JotaiWrapper"; import { useAtomValue } from "jotai"; import React, { Fragment } from "react"; import ModelTable from "../ModelTable"; const ActiveModelTable: React.FC = () => { const activeModel = useAtomValue(currentProductAtom); if (!activeModel) return null; return (

Active Model(s)

); }; export default ActiveModelTable;