import PropTypes from 'prop-types' import React from 'react' import Image from 'next/image' import { Col, Row } from 'reactstrap' import ContentSection from './ContentSection' const SimulationSection = ({ className }) => { return (

Working with OpenDC:

Running an experiment in OpenDC Running an experiment in OpenDC

OpenDC's Simulator:

OpenDC's Architecture OpenDC's Architecture
) } SimulationSection.propTypes = { className: PropTypes.string, } export default SimulationSection