|
1 | 1 | import "./ArticleContactForm.scss" |
2 | 2 | import React, {useEffect, useState} from 'react' |
3 | | -import {useApi} from "/src/hooks/api.js" |
4 | | -import {useConstants} from "/src/hooks/constants.js" |
5 | | -import {useData} from "/src/providers/DataProvider.jsx" |
6 | | -import {useFeedbacks} from "/src/providers/FeedbacksProvider.jsx" |
7 | | -import {useLanguage} from "/src/providers/LanguageProvider.jsx" |
8 | | -import {useNavigation} from "/src/providers/NavigationProvider.jsx" |
9 | | -import {useUtils} from "/src/hooks/utils.js" |
10 | | -import Article from "/src/components/articles/base/Article.jsx" |
11 | | -import {RowForm, RowFormGroup, RowFormGroupAlert, RowFormGroupItem, RowFormGroupSubmit} from "/src/components/forms/containers/RowForm.jsx" |
12 | | -import {MessageCard, MessageCardIcon, MessageCardBody, MessageCardFooter} from "/src/components/generic/MessageCard.jsx" |
13 | | -import Input from "/src/components/forms/fields/Input.jsx" |
14 | | -import Textarea from "/src/components/forms/fields/Textarea.jsx" |
15 | | -import StandardButton from "/src/components/buttons/StandardButton.jsx" |
| 3 | +import {useApi} from "../../hooks/api.js" |
| 4 | +import {useConstants} from "../../hooks/constants.js" |
| 5 | +import {useData} from "../../providers/DataProvider.jsx" |
| 6 | +import {useFeedbacks} from "../../providers/FeedbacksProvider.jsx" |
| 7 | +import {useLanguage} from "../../providers/LanguageProvider.jsx" |
| 8 | +import {useNavigation} from "../../providers/NavigationProvider.jsx" |
| 9 | +import {useUtils} from "../../hooks/utils.js" |
| 10 | +import Article from "../../components/articles/base/Article.jsx" |
| 11 | +import {RowForm, RowFormGroup, RowFormGroupAlert, RowFormGroupItem, RowFormGroupSubmit} from "../../components/forms/containers/RowForm.jsx" |
| 12 | +import {MessageCard, MessageCardIcon, MessageCardBody, MessageCardFooter} from "../../components/generic/MessageCard.jsx" |
| 13 | +import Input from "../../components/forms/fields/Input.jsx" |
| 14 | +import Textarea from "../../components/forms/fields/Textarea.jsx" |
| 15 | +import StandardButton from "../../components/buttons/StandardButton.jsx" |
16 | 16 |
|
17 | 17 | /** |
18 | 18 | * @param {ArticleDataWrapper} dataWrapper |
|
0 commit comments