import * as React from 'react'; import { SortableContainer } from 'react-sortable-hoc'; export interface ISortableContainerProps { } export const Container = SortableContainer( ({ children }: React.PropsWithChildren) => { return ( ); } );