@twitocode/react-components
v1.0.4
Published
My personal React Styled-component Library
Downloads
48
Maintainers
Readme
React-Components
This is my personal React Styled-Component Library
To Install:
npm install @twitocode/react-components
or
yarn add @twitocode/react-componentsExample:
import { Text } from '@twitocode/react-components';
export const App = () => {
return (
<>
<Text color='black' align='center'>
Hello World!
</Text>
</>
);
};