PromucFlow_constructor/app/client/src/pages/AppViewer/viewer/AppViewerHeader.tsx

18 lines
434 B
TypeScript
Raw Normal View History

import React from "react";
import styled from "styled-components";
2019-11-05 05:09:50 +00:00
import StyledHeader from "../../../components/designSystems/appsmith/StyledHeader";
2019-11-05 05:09:50 +00:00
const HeaderWrapper = styled(StyledHeader)`
position: fixed;
top: 0;
left: 0;
background: white;
`;
type AppViewerHeaderProps = {};
export const AppViewerHeader = (props: AppViewerHeaderProps) => {
return <HeaderWrapper {...props} />;
};
export default AppViewerHeader;