11 lines
237 B
TypeScript
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>
|
|
);
|
|
}; |