James 6f50424917 allow user to query for HF models
Signed-off-by: James <james@jan.ai>
2023-10-06 16:46:47 +07:00

11 lines
279 B
TypeScript

import React from "react";
import Image from "next/image";
const SidebarHeader: React.FC = () => (
<div className="flex flex-col gap-[10px] px-3">
<Image src={"icons/Jan_AppIcon.svg"} width={68} height={28} alt="" />
</div>
);
export default React.memo(SidebarHeader);