KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
react-postcss
★ 10
Open GitHub ↗
Simple style tag for React
Download README (.md)
Explore Similar Repositories
option_calculator
:
No description available.
puppet-etcd
:
etcd is a distributed key value store that provides a reliable way to store data across a cluster of machines.
attr_pouch
:
Schema-less auxiliary attribute storage for Postgres via Sequel plugin
230-web
:
Website for CSE230
bmp2c
:
Convert a 24-bit bitmap to ili9341 format 565 array in c
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
react-postcss
?
Download (.md)
# react-postcss [](https://travis-ci.org/MunGell/react-postcss) This repository contains proof-of-concept simple style tag component for React. ## How to use ```js style: function() { return ` .Container { &__button { color: red; background-color: black; } } `; }, render: function () { return ( <div className="Container"> <Style plugins={[postcssNested, autoprefixer]}>{this.style()}</Style> <button className="Container__button"> Button </button> </div> ) } ``` ## PostCSS This component uses [PostCSS](https://github.com/postcss/postcss). You can use any plugins from [postcss.parts](http://postcss.parts/) website.