import React, { Component, Fragment } from 'react'; import { Trans } from '@lingui/macro'; import { PageSection, PageSectionVariants, Title, } from '@patternfly/react-core'; class InventoryScripts extends Component { render () { const { light, medium } = PageSectionVariants; return ( <Trans>Inventory Scripts</Trans> ); } } export default InventoryScripts;