@datalayer/core
Version:
[](https://datalayer.io)
13 lines (12 loc) • 934 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
/*
* Copyright (c) 2023-2025 Datalayer, Inc.
* Distributed under the terms of the Modified BSD License.
*/
import { Box, PageHeader, Flash, PageLayout } from '@primer/react';
import { ConstructionIcon } from '@datalayer/icons-react';
export const WipMock = (props) => {
const { title } = props;
return (_jsxs(PageLayout, { containerWidth: "full", padding: "normal", style: { overflow: 'visible', minHeight: 'calc(100vh - 45px)' }, children: [_jsxs(PageLayout.Header, { children: [_jsx(PageHeader, { children: _jsx(PageHeader.TitleArea, { variant: "large", children: _jsx(PageHeader.Title, { children: title }) }) }), _jsx(Box, { children: _jsx(Flash, { children: _jsxs(Box, { children: ["The ", title, " feature is being developed."] }) }) })] }), _jsx(PageLayout.Content, { children: _jsx(ConstructionIcon, { size: 200 }) })] }));
};
export default WipMock;