mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-28 07:51:02 +00:00
18 lines
476 B
TypeScript
18 lines
476 B
TypeScript
import React, { useState } from "react";
|
|
import { FaExclamationCircle, FaArrowLeft } from "react-icons/fa";
|
|
import { useTranslation } from "react-i18next";
|
|
import { useNavigate } from "react-router-dom";
|
|
import Header from "./Header";
|
|
import Footer from "./Footer";
|
|
import { getComplaintById } from "../../shared/services/complaintService";
|
|
|
|
const KnowAs = () => {
|
|
return (
|
|
<div>
|
|
<div>comming soon</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default KnowAs;
|