diff --git a/src/pages/ValidatorOnboarding/ValidatorBoxWrapper/ValidatorBoxWrapper.tsx b/src/pages/ValidatorOnboarding/ValidatorBoxWrapper/ValidatorBoxWrapper.tsx new file mode 100644 index 00000000..c6d30a53 --- /dev/null +++ b/src/pages/ValidatorOnboarding/ValidatorBoxWrapper/ValidatorBoxWrapper.tsx @@ -0,0 +1,25 @@ +import { Shadow } from '@status-im/components' +import { ReactNode } from 'react' + +type ValidatorBoxWrapperProps = { + children: ReactNode +} + +const ValidatorBoxWrapper = ({ children }: ValidatorBoxWrapperProps) => { + return ( + + {children} + + ) +} + +export default ValidatorBoxWrapper