Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ummahusla committed Oct 23, 2019
0 parents commit 1cf431f
Show file tree
Hide file tree
Showing 21 changed files with 42,651 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

# See https://help.github.com/ignore-files/ for more about ignoring files.

# dependencies
node_modules

# builds
build
dist
.rpt2_cache

# misc
.DS_Store
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
language: node_js
node_js:
- 9
- 8
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# react-simple-card

> Simple React card component
[![NPM](https://img.shields.io/npm/v/react-simple-card.svg)](https://www.npmjs.com/package/react-simple-card) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)

## Install

```bash
npm install --save react-simple-card
```

## Usage

```tsx
import * as React from 'react'

import MyComponent from 'react-simple-card'

class Example extends React.Component {
render () {
return (
<MyComponent />
)
}
}
```

## License

MIT © [ummahusla](https://github.com/ummahusla)
2,164 changes: 2,164 additions & 0 deletions example/README.md

Large diffs are not rendered by default.

Loading

0 comments on commit 1cf431f

Please sign in to comment.