| 1 2 3 4 5 6 7 8 9 10 | 1× | "use strict";
module.exports = require("../utils/common").createRule(
"Prevent JSX as JSX prop value",
"JSX attribute values should not contain other JSX",
function(node) {
return node.type === "JSXElement";
}
);
|