mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-02-07 09:19:11 +08:00
8 lines
130 B
TypeScript
8 lines
130 B
TypeScript
type Props = {
|
|
children: React.ReactElement;
|
|
};
|
|
|
|
export default function MaskedView({ children }: Props) {
|
|
return children;
|
|
}
|