mirror of
https://github.com/fleetdm/fleet
synced 2026-05-20 23:48:52 +00:00
- Schedule page functionality: Create (modal), delete (modal), view schedule, advanced options - Replaces Packs tab with Schedules tab - Updates e2e tests, mocks, stubs, etc - Defaults logging type to snapshot for packs - Adds conversion helpers and tests helper functions - Adds global_scheduled_queries to redux
16 lines
298 B
JavaScript
16 lines
298 B
JavaScript
import React from "react";
|
|
import PropTypes from "prop-types";
|
|
|
|
class SchedulePageWrapper extends React.Component {
|
|
static propTypes = {
|
|
children: PropTypes.node,
|
|
};
|
|
|
|
render() {
|
|
const { children } = this.props;
|
|
|
|
return children || null;
|
|
}
|
|
}
|
|
|
|
export default SchedulePageWrapper;
|