chamika-design
v1.0.2
Published
This is basic CSS framewok
Downloads
2
Readme
chamika-design
This is basic CSS framewok
Install
npm install --save chamika-design
Usage
import React, { Component } from 'react'
import { Row, Col } from 'chamika-design'
import 'chamika-design/dist/index.css'
class Example extends Component {
render() {
return (
<div>
<Row >
<Col size={3}>
<h2> Hello World</h2>
</Col>
<Col size={3}>
<h2> Good Morning</h2>
</Col>
</Row>
</div>
)
}
}