mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-04-02 15:13:46 +00:00
6 lines
211 B
TypeScript
6 lines
211 B
TypeScript
import { type Component, type JSX } from "solid-js"
|
|
|
|
export const SettingsList: Component<{ children: JSX.Element }> = (props) => {
|
|
return <div class="bg-surface-base px-4 rounded-lg">{props.children}</div>
|
|
}
|