📝 Qbittorrent form scaffold

This commit is contained in:
2023-09-11 16:03:41 -04:00
parent f9f3109132
commit ac80c23fa8
4 changed files with 19 additions and 14 deletions

View File

@@ -1,4 +1,5 @@
import React, { ReactElement, useCallback, useEffect } from "react";
import { Form, Field } from "react-final-form";
import { useDispatch, useSelector } from "react-redux";
import { getQBitTorrentClientInfo } from "../../../actions/settings.actions";
@@ -9,12 +10,23 @@ export const QbittorrentConnectionForm = (): ReactElement => {
useEffect(() => {
dispatch(getQBitTorrentClientInfo());
}, [])
return (
<div className="is-clearfix">
const handleSubmit = () => {}
return (<>
<pre> {JSON.stringify(torrents, null, 4)} </pre>
</div>
);
<Form
onSubmit={handleSubmit}
// validate={}
/* initialValues={} */
render={({ handleSubmit }) => (
<form onSubmit={handleSubmit}>
<h2>Configure Qbittorrent</h2>
</form>
)}
/>
</>);
};
export default QbittorrentConnectionForm;