symref
Version:
Static code checker for AI code agents (Windsurf, Cline, etc.)
11 lines • 613 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
// 自己閉じタグテスト用
const SelfClosingTest = () => _jsx("div", { children: "Test" });
// 開始/終了タグテスト用
function OpenCloseTagTest({ children }) {
return (_jsxs("div", { children: [_jsx(SelfClosingTest, {}), _jsx("span", { children: "Content" }), children] }));
}
// 入れ子構造テスト用
const NestedTest = () => (_jsx("div", { children: _jsx(OpenCloseTagTest, { children: _jsx(SelfClosingTest, {}) }) }));
export { SelfClosingTest, OpenCloseTagTest, NestedTest };
//# sourceMappingURL=JSXPatterns.test.js.map