mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-29 16:14:43 +00:00
Layout save fix
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import { ChangeEvent } from "react";
|
||||
import Cookies from "js-cookie";
|
||||
|
||||
interface SearchAndLayoutProps {
|
||||
search: string;
|
||||
@@ -11,8 +12,9 @@ const SearchAndLayout = ({
|
||||
search,
|
||||
setSearch,
|
||||
itemPerPage,
|
||||
setItemPerPage
|
||||
}: SearchAndLayoutProps) => (
|
||||
setItemPerPage,
|
||||
}: SearchAndLayoutProps) => {
|
||||
return (
|
||||
<div className="flex gap-2 items-center pt-4">
|
||||
<input
|
||||
type="text"
|
||||
@@ -34,5 +36,6 @@ const SearchAndLayout = ({
|
||||
</select>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default SearchAndLayout;
|
||||
Reference in New Issue
Block a user