This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jar { | |
manifest { | |
attributes "Implementation-Title": "Gradle Quickstart" | |
attributes "Implementation-Version": version | |
attributes "Main-Class" : "com.ti.specteam.programs.Application" | |
} | |
// remove the security files (from mail.jar / activation.jar) so that the jar will be executable. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import ReactDOM from 'react-dom'; | |
import { DragDropContext, Droppable, Draggable } from 'react-beautiful-dnd'; | |
/////////////////////////////////////////////////////////////////////// | |
class Tbody extends React.Component { | |
render() { | |
const { provided, innerRef, children } = this.props; | |
return <tbody {...provided.droppableProps} ref={innerRef}> |