fleet/frontend/components/software/SoftwarePageWrapper/SoftwarePageWrapper.tsx
gillespi314 4d5e3277ef
Add new feature: Software page (#3923)
* Add new software page
* Add hosts counts and last updated to software card on homepage
* Extend InfoCard component to all children to set dynamic title information and hyperlinks
* Add new TeamsDropdownHeader component
* Refactor TableContainer to move server-side pagination buttons to DataTable
* Extend DataTable to include footer element
2022-01-31 16:24:20 -06:00

11 lines
204 B
TypeScript

import React from "react";
const SoftwarePageWrapper = ({
children,
}: {
children: React.ReactNode;
}): React.ReactNode | null => {
return children || null;
};
export default SoftwarePageWrapper;