7.6.2.17. ListPageCreate
Component for adding a create button for a specific resource kind that automatically generates a link to the create YAML for this resource.
Example
const exampleList: React.FC<MyProps> = () => {
return (
<>
<ListPageHeader title="Example Pod List Page"/>
<ListPageCreate groupVersionKind="Pod">Create Pod</ListPageCreate>
</ListPageHeader>
</>
);
};
| Parameter Name | Description |
|---|---|
|
| the resource group/version/kind to represent |