8000 GitHub - OlehDutchenko/react-microbe-ui: microbe-ui for react
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

OlehDutchenko/react-microbe-ui

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-microbe-ui

DEVELOPMENT IS STOPPED! DO NOT USE THIS PACKAGE!

We came to the conclusion that the creation of React Components for generating CSS classes of microbe-ui is an overkill.

This leads to superfluous abstractions which you shall need to learn, understand and remember.

It is much simpler to specify the necessary classes in your components directly using the familiar className prop, rather than import a separate component and manage it using custom props

En example:

export const MyComponent: React.FC = () => (
    <div>
        <MyReactComponent className="_pl-def _lg:pd-xl">
            ...
        </MyReactComponent>
    
        <div className="_module-grid _module-grid--1 _md:module-grid--2 _spacer _spacer--lg">
            <div className="_module-cell">...</div>
            <div className="_module-cell">...</div>
            <div className="_module-cell">...</div>
        </div>
    </div>
);

Keep calm and write clean code ;)
Regards, microbe-ui dev team.

About

microbe-ui for react

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 87.3%
  • TypeScript 10.3%
  • JavaScript 1.3%
  • HTML 1.1%
0