24 lines
746 B
TypeScript
24 lines
746 B
TypeScript
import { ArrowLeft } from "react-feather"
|
|
|
|
import { overview } from "@/constants/routes/webviews"
|
|
|
|
import Link from "@/components/TempDesignSystem/Link"
|
|
import { getIntl } from "@/i18n"
|
|
import { getLang } from "@/i18n/serverContext"
|
|
import { webviewSearchParams } from "@/utils/webviews"
|
|
|
|
import styles from "./linkToOverview.module.css"
|
|
|
|
export default async function LinkToOverview() {
|
|
const { formatMessage } = await getIntl()
|
|
const searchParams = webviewSearchParams()
|
|
|
|
const overviewHref = `${overview[getLang()]}?${searchParams.toString()}`
|
|
return (
|
|
<Link className={styles.overviewLink} href={overviewHref}>
|
|
<ArrowLeft height={20} width={20} />{" "}
|
|
{formatMessage({ id: "Go back to overview" })}
|
|
</Link>
|
|
)
|
|
}
|