react-conditional-components-renderer
Version:
React library with conditional components to rendering
19 lines (18 loc) • 899 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.Otherwise = exports.InCaseOf = exports.Choice = exports.Case = exports.Switch = exports.If = void 0;
const If_1 = __importDefault(require("./if/If"));
exports.If = If_1.default;
const Switch_1 = __importDefault(require("./switch/Switch"));
exports.Switch = Switch_1.default;
const Case_1 = __importDefault(require("./switch/Case"));
exports.Case = Case_1.default;
const Choice_1 = __importDefault(require("./choice/Choice"));
exports.Choice = Choice_1.default;
const InCaseOf_1 = __importDefault(require("./choice/InCaseOf"));
exports.InCaseOf = InCaseOf_1.default;
const Otherwise_1 = __importDefault(require("./choice/Otherwise"));
exports.Otherwise = Otherwise_1.default;