mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-02 04:12:47 +02:00
feat: add suggestion tooltip UI and autocomplete API types
This commit is contained in:
parent
fbd033d0a4
commit
bcc227a4dd
4 changed files with 275 additions and 0 deletions
13
surfsense_web/app/suggestion/layout.tsx
Normal file
13
surfsense_web/app/suggestion/layout.tsx
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import "./suggestion.css";
|
||||
|
||||
export const metadata = {
|
||||
title: "SurfSense Suggestion",
|
||||
};
|
||||
|
||||
export default function SuggestionLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return <div className="suggestion-body">{children}</div>;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue