content hardcoded resolved
This commit is contained in:
parent
dcfe260f0e
commit
47472868e1
@ -7,7 +7,6 @@ import { useDebounce } from "./functions/debounce";
|
||||
import { IProduct } from "./IProdutct";
|
||||
import { useTranslation } from "react-i18next";
|
||||
|
||||
|
||||
type Props = {
|
||||
className?: string;
|
||||
};
|
||||
@ -28,8 +27,7 @@ export default function Fiter({ className }: Props) {
|
||||
};
|
||||
const debounced = useDebounce(query);
|
||||
|
||||
const [t, i18next] = useTranslation()
|
||||
|
||||
const [t, i18next] = useTranslation();
|
||||
|
||||
async function fetchProducts() {
|
||||
const response = await axios.get(
|
||||
@ -99,13 +97,13 @@ export default function Fiter({ className }: Props) {
|
||||
/>
|
||||
</Disclosure>
|
||||
<Disclosure caption={t("filters.publicationsType")}>
|
||||
<p>контент...</p>
|
||||
<p>{t("filters.content")}</p>
|
||||
</Disclosure>
|
||||
<Disclosure caption={t("filters.publisher")}>
|
||||
<p>контент...</p>
|
||||
<p>{t("filters.content")}</p>
|
||||
</Disclosure>
|
||||
<Disclosure caption={t("filters.publicationTopic")}>
|
||||
<p>контент...</p>
|
||||
<p>{t("filters.content")}</p>
|
||||
</Disclosure>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user