Detail
The Detail component displays an organised summary of key/value data pairs, providing a clear and structured view of details.
Last updated
The Detail component displays an organised summary of key/value data pairs, providing a clear and structured view of details.
Last updated
import { Detail } from 'components/lib';
function Example(){
const data = {
name: "John Doe",
email: "[email protected]",
age: 30
};
return <Detail data={ data } show={['name', 'email', 'age']} />;
}