Package Exports
- @jimengio/jimo-basics
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@jimengio/jimo-basics) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Jimo Basics
Very basic UI components.
http://fe.jimu.io/jimo-basics/
Usage
yarn add @jimengio/jimo-basicsButton:
<JimoButton prepend={`+`} text={"DEMO"} fillColor onClick={() => {}} />Tabs:
let items: IJimoTabItem[] = [{ title: "A", value: "a" }, { title: "This is b", value: "b" }];
<JimoTabs
items={items}
value={tab}
onClick={(value) => {
setTab(value.value);
}}
/>;Todo page component:
<TodoFeature title="A not finished feature" description={"Some description"} />Workflow
https://github.com/jimengio/ts-workflow
License
MIT