JSFiddle - React, Tailwind, and code Playground
by aninaslyan
JavaScript
const Button = props => {
const { kind, ...other } = props;
const className = kind === "primary" ? "PrimaryButton" : "SecondaryButton";
return <p>Test</p>;
};
by aninaslyan
const Button = props => {
const { kind, ...other } = props;
const className = kind === "primary" ? "PrimaryButton" : "SecondaryButton";
return <p>Test</p>;
};