Profile page UI and functionality implemented

This commit is contained in:
adilallo
2026-04-25 17:57:58 -06:00
parent 7dd2562bae
commit 68517796a9
103 changed files with 4439 additions and 1476 deletions
@@ -0,0 +1,17 @@
"use client";
import { memo } from "react";
import { ListView } from "./List.view";
import type { ListProps } from "./List.types";
/**
* Figma: "List Edit" list frame — S (21863:45631), M (21863:45493), L (21844:4405).
* Composes {@link ListEntry} rows with a shared list-level top rule when enabled.
*/
const ListContainer = memo<ListProps>((props) => {
return <ListView {...props} />;
});
ListContainer.displayName = "List";
export default ListContainer;