mirror of
https://github.com/fleetdm/fleet
synced 2026-05-06 14:58:33 +00:00
* 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
11 lines
204 B
TypeScript
11 lines
204 B
TypeScript
import React from "react";
|
|
|
|
const SoftwarePageWrapper = ({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}): React.ReactNode | null => {
|
|
return children || null;
|
|
};
|
|
|
|
export default SoftwarePageWrapper;
|