A system for building UI components
$ yarn add @apppilots/baumeister
$ npm install @apppilots/baumeister
import {Box} from '@apppilots/baumeister';
const Welcome = () => {
return (
<Box
paddingHorizontal={'m'}
paddingVertical={'m'}
backgroundColor={'red'}
>
<Text>Hello Baumeister!</Text>
</Box>
);
};
export default Welcome;
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT