MCPcopy Create free account
hub / github.com/OpenPipe/OpenPipe / PageHeaderContainer

Function PageHeaderContainer

app/src/components/nav/PageHeaderContainer.tsx:3–17  ·  view source on GitHub ↗
(props: FlexProps)

Source from the content-addressed store, hash-verified

1import { Flex, type FlexProps } from "@chakra-ui/react";
2
3const PageHeaderContainer = (props: FlexProps) => {
4 return (
5 <Flex
6 px={8}
7 py={2}
8 minH={16}
9 w="full"
10 direction={{ base: "column", sm: "row" }}
11 alignItems={{ base: "flex-start", sm: "center" }}
12 justifyContent="space-between"
13 fontWeight="500"
14 {...props}
15 />
16 );
17};
18
19export default PageHeaderContainer;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected