import { View } from "@tarojs/components"; import { PropsWithChildren } from "react"; export const CPageContainer = ({ children }:PropsWithChildren) => { return ( {children} ); };