feat(react/settings): port code block settings

This commit is contained in:
Elian Doran
2025-08-18 11:21:09 +03:00
parent 3ba0bcea4e
commit 234d3997b1
5 changed files with 146 additions and 169 deletions

View File

@@ -2,7 +2,7 @@ import type { ComponentChildren } from "preact";
type OnChangeListener = (newValue: string) => void;
interface FormSelectGroup<T> {
export interface FormSelectGroup<T> {
title: string;
items: T[];
}