🏗 WIP scaffold for Volumes tabulated view

This commit is contained in:
2022-04-08 22:47:57 -07:00
parent a3f076add3
commit c4f46cc727
4 changed files with 35 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
import React, { ReactElement, useEffect, useMemo } from "react";
import { useDispatch, useSelector } from "react-redux";
import { searchIssue } from "../../actions/fileops.actions";
import Card from "../Carda";
import SearchBar from "../Library/SearchBar";
import T2Table from "../shared/T2Table";
import ellipsize from "ellipsize";
import { isUndefined } from "lodash";
import { convert } from "html-to-text";
export const Volumes = (props): ReactElement => {
return <div>as</div>;
};
export default Volumes;