download sections and progess bars

This commit is contained in:
SpikeHD
2022-05-11 19:20:08 -07:00
parent de9f9e1404
commit 414a9eaa86
10 changed files with 123 additions and 6 deletions

View File

@@ -0,0 +1,21 @@
import React from 'react'
import './MiniDialog.css'
interface IProps {
children: React.ReactNode[] | React.ReactNode;
}
export default class MiniDialog extends React.Component<IProps, never> {
constructor(props: IProps) {
super(props)
}
render() {
return (
<div className="MiniDialog">
{this.props.children}
</div>
)
}
}