chore: get ready for release (#308)
* chore: get ready for release * chore: update pnpm-lock.yaml * chore(docs): update CHANGELOG.md * chore: fix lint warnings and add notes --------- Co-authored-by: doprz <52579214+doprz@users.noreply.github.com>
This commit is contained in:
@@ -6,7 +6,12 @@ import React, { useState } from 'react';
|
||||
import { Button } from './common/Button';
|
||||
import Text from './common/Text/Text';
|
||||
|
||||
const ReportIssueMain: React.FC = () => {
|
||||
/**
|
||||
* ReportIssueMain component renders a feedback form for users to submit their email and feedback.
|
||||
*
|
||||
* @returns The rendered component.
|
||||
*/
|
||||
export default function ReportIssueMain(): JSX.Element {
|
||||
const [email, setEmail] = useState('');
|
||||
const [feedback, setFeedback] = useState('');
|
||||
const [isSubmitted, setIsSubmitted] = useState(false);
|
||||
@@ -112,6 +117,4 @@ const ReportIssueMain: React.FC = () => {
|
||||
</form>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default ReportIssueMain;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user