Repository URL to install this package:
|
Version:
0.0.1 ▾
|
import React, { FC } from 'react'
import { ComponentsWrapperProps, LegacyPoolFinderProps, TridentPoolFinderProps } from './types'
export const ComponentsWrapper: FC<ComponentsWrapperProps<LegacyPoolFinderProps | TridentPoolFinderProps>> = ({
children,
}) => {
return <>{children}</>
}