{
diff --git a/src/components/faq/FAQ.jsx b/src/components/faq/FAQ.jsx
index 93ddf27..2b7fa2e 100644
--- a/src/components/faq/FAQ.jsx
+++ b/src/components/faq/FAQ.jsx
@@ -49,7 +49,7 @@ const faqData = [
}
]
-export default function FAQ() {
+const FAQ = () => {
return (
@@ -71,4 +71,6 @@ export default function FAQ() {
)
-}
\ No newline at end of file
+};
+
+export default FAQ;
\ No newline at end of file
diff --git a/tsconfig.paths.json b/tsconfig.paths.json
new file mode 100644
index 0000000..b8d6842
--- /dev/null
+++ b/tsconfig.paths.json
@@ -0,0 +1,7 @@
+{
+ "compilerOptions": {
+ "paths": {
+ "@/*": ["./src/*"]
+ }
+ }
+}