import React from 'react'; import { Trans } from '@lingui/macro'; import Button from '@mui/material/Button'; import Divider from '@mui/material/Divider'; import Grid from '@mui/material/Grid'; import Typography from '@mui/material/Typography'; import Paper from '../../../misc/Paper'; import PaperHeader from '../../../misc/PaperHeader'; export default function Source(props) { return ( Video setup} onAbort={props.Abort} onHelp={props.onHelp} /> Select whether you pull the stream from a network source (such as a network camera), the{' '} internal RTMP server (e.g., OBS streams to the Restreamer), or use a{' '} WebRTC Room to stream directly from a browser (screen share or camera). {props.sources} ); } Source.defaultProps = { onAbort: () => {}, onHelp: () => {}, onAdvanced: () => {}, sources: [], };