mirror of
https://github.com/fleetdm/fleet
synced 2026-05-20 15:38:39 +00:00
12 lines
204 B
TypeScript
12 lines
204 B
TypeScript
|
|
import React from "react";
|
||
|
|
|
||
|
|
const SoftwarePageWrapper = ({
|
||
|
|
children,
|
||
|
|
}: {
|
||
|
|
children: React.ReactNode;
|
||
|
|
}): React.ReactNode | null => {
|
||
|
|
return children || null;
|
||
|
|
};
|
||
|
|
|
||
|
|
export default SoftwarePageWrapper;
|