import React from "react"; import styled from "styled-components"; import { DragDropContext, Droppable, Draggable } from "react-beautiful-dnd"; import Activity from "./Activity"; function Chapter(props: any) { return ( {(provided, snapshot) => (

{props.info.list.chapter.name}

{(provided) => ( {props.info.list.activities.map((activity: any, index: any) => ( ))} {provided.placeholder} )}
)}
); } const ChapterWrapper = styled.div` margin-bottom: 20px; padding: 4px; background-color: #ffffffc5; width: 900px; font-size: 15px; display: block; border-radius: 9px; border: 1px solid rgba(255, 255, 255, 0.19); box-shadow: 0px 13px 33px -13px rgb(0 0 0 / 12%); transition: all 0.2s ease; h3{ padding-left: 20px; padding-right: 20px; } `; const ActivitiesList = styled.div` padding: 10px; `; export default Chapter;