0.0.7 • Published 5 years ago

@jxz/flexbox v0.0.7

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

FlexBox

import FlexBox from "@jxz/flexbox";

<FlexBox
  flexDirection={"row-reverse"}
  justifyContent={"space-between"}
  width={"600px"}
>
  <FlexBox>
    <label>
      Title:{" "}
      <input
        name="title"
        value={form.title}
        onChange={onChange}
        onBlur={onBlur}
      />
      {errors.title}
    </label>
  </FlexBox>
  <FlexBox>
    <label>
      vegetarian:
      <input
        type="checkbox"
        name="vegetarian"
        checked={form.vegetarian}
        onChange={onChange}
        onBlur={onBlur}
      />
    </label>
  </FlexBox>
  <FlexBox width={"120px"}>
    <button>Add Recipe</button>
  </FlexBox>
</FlexBox>;
0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago