2025-11-10 16:42:35 +08:00

11 lines
237 B
TypeScript

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