Repository URL to install this package:
|
Version:
0.0.0 ▾
|
@sushiswap/ui
/
getLayout.ts
|
|---|
import type { ComponentType } from 'react'
import { Noop } from './Noop'
export function getLayout<LP extends {}>(Component: ComponentType<any>): ComponentType<LP> {
return (Component as any).Layout || Noop
}