📋 UI improvements in the Library section

This commit is contained in:
2022-04-06 11:00:16 -07:00
parent 0cd142153c
commit 81bdaefdd1
9 changed files with 82 additions and 32 deletions

View File

@@ -0,0 +1,25 @@
import React, { ReactElement, useEffect } from "react";
import { useDispatch } from "react-redux";
import { searchIssue } from "../../actions/fileops.actions";
export const WantedComics = (props): ReactElement => {
const dispatch = useDispatch();
useEffect(() => {
dispatch(
searchIssue(
{
query: {},
},
{
pagination: {
size: 25,
from: 0,
},
},
),
);
}, []);
return <>Ads</>;
};
export default WantedComics;