Skip to content

Instantly share code, notes, and snippets.

View IMRFeng's full-sized avatar
🏠
Working from home

F IMRFeng

🏠
Working from home
  • Auckland, New Zealand
View GitHub Profile
/************************************************************************
1) Have the Container which has the DragDropContext with HTML5Backend
*/
...
import { DragDropContext } from 'react-dnd';
import HTML5Backend from 'react-dnd/modules/backends/HTML5';
...
class Container extends Component {
render() { ... }
package ca.uwo.csd.cs2212.USERNAME;
public class BankAccount {
private double balance;
public BankAccount(double balance) {
this.balance = balance;
}