API Reference
Advanced Tutorials
Comparison
FAQ
Contributing
Testing
Migration Guide
Licence
This is documentation for Refine 3.xx.xx, which is no longer actively maintained.
For up-to-date documentation, see the latest version (4.xx.xx).
Version: 3.xx.xx
basic-usage-live-preview
localhost:3000/products
Live previews only work with the latest documentation.
import { useState } from "react";
import { useOne, HttpError } from "@pankod/refine-core";
interface IProduct {
id: number;
name: string;
material: string;
}
const ProductList: React.FC = () => {
const [id, setId] = useState(1);
const { data, isLoading, isError } = useOne<IProduct, HttpError>({
resource: "products",
id,
});
const product = data?.data;
if (isLoading) {
return <div>Loading...</div>;
}
if (isError) {
return <div>Something went wrong!</div>;
}
return (
<div>
<h3>Product Details</h3>
<p>id: {product?.id}</p>
<p>name: {product?.name}</p>
<p>material: {product?.material}</p>
<br />
<button
onClick={() => setId((prev) => prev - 1)}
disabled={id === 1}
>
{"<"} Prev Product
</button>
<button onClick={() => setId((prev) => prev + 1)}>
Next Product {">"}
</button>
</div>
);
};