App reorganization

This commit is contained in:
adilallo
2026-04-18 14:12:49 -06:00
parent f866d11ff8
commit e9dab04b34
288 changed files with 2698 additions and 5029 deletions
+22
View File
@@ -0,0 +1,22 @@
import { describe } from "vitest";
import {
componentTestSuite,
type ComponentTestSuiteConfig,
} from "../utils/componentTestSuite";
import Separator from "../../app/components/utility/Separator";
type Props = React.ComponentProps<typeof Separator>;
const config: ComponentTestSuiteConfig<Props> = {
component: Separator,
name: "Separator",
props: {} as Props,
testCases: {
renders: true,
accessibility: true,
},
};
describe("Separator", () => {
componentTestSuite<Props>(config);
});