Restructured readme

This commit is contained in:
Igor Katson 2023-11-22 07:39:42 +00:00
parent 6a0e08aba3
commit 01ee96853e
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5
2 changed files with 30 additions and 34 deletions

View file

@ -394,14 +394,6 @@ const Buttons = () => {
);
};
const LastErrors = (props: { lastErrors: Array<ErrorType> }) => {
return <div>
{props.lastErrors.map((e: ErrorType) => (
<div className="alert alert-primary" role="alert"></div>
))}
</div>
}
const RootContent = (props: { closeableError: ErrorType, otherError: ErrorType, torrents: Array<TorrentId>, torrentsLoading: boolean }) => {
let ctx = useContext(AppContext);
return <>