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
// FileName: App.js | |
import './App.css'; | |
import React from 'react'; | |
// importing components from another files | |
import { ListComponents } from "./ListComponent"; | |
// imports related to DND | |
import { DragDropContext } from 'react-beautiful-dnd'; | |
function App() { | |
// List 1 consisting of all MARVEL super heroes | |
const [list1, setList1] = React.useState(['Captain America', 'Iron Man', 'SpiderMan', 'Thor', 'Hulk', 'Black Widow', 'Loki', 'Black Panther', 'Deadpool', 'Doctor Strange', 'Ant Man', 'Captain Marvel']) |