import React from "react"; import SortableSocialProfile from "./SortableSocialProfile"; import { SortableContainer } from "react-sortable-hoc"; const SortableList = SortableContainer(props => { const { profiles, ...rest } = props; return ( ); }); export default SortableList;