Skip to content

Commit 42bd3ea

Browse files
Added: Contributor Image in readme file.
1 parent 5dac558 commit 42bd3ea

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

README.md

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -53,17 +53,17 @@ pnpm add keep-react
5353
following code:
5454

5555
```jsx
56-
import keepPreset from "keep-react/preset";
56+
import keepPreset from 'keep-react/preset'
5757
export default {
58-
content: ["node_modules/keep-react/**/*.{js,jsx,ts,tsx}"],
58+
content: ['node_modules/keep-react/**/*.{js,jsx,ts,tsx}'],
5959
presets: [keepPreset],
6060
}
6161
```
6262

6363
`Step 4:` Add Tailwind CSS to index.css File:
6464

6565
```css
66-
@import "keep-react/css";
66+
@import 'keep-react/css';
6767
@tailwind base;
6868
@tailwind components;
6969
@tailwind utilities;
@@ -106,15 +106,15 @@ following code
106106

107107
```js
108108
module.exports = {
109-
content: ["node_modules/keep-react/**/*.{js,jsx,ts,tsx}"],
110-
presets: [require("keep-react/preset")],
111-
};
109+
content: ['node_modules/keep-react/**/*.{js,jsx,ts,tsx}'],
110+
presets: [require('keep-react/preset')],
111+
}
112112
```
113113

114114
`Step 4:` Add Tailwind CSS to globals.css File:
115115

116116
```css
117-
@import "keep-react/css";
117+
@import 'keep-react/css';
118118
@tailwind base;
119119
@tailwind components;
120120
@tailwind utilities;
@@ -125,14 +125,12 @@ Congratulations! You have successfully installed the Keep React. Now you can imp
125125
## usage
126126

127127
```jsx
128-
'use client';
129-
import { Button } from "keep-react";
130-
const App = () => {
131-
return (
132-
<Button size="md">Default</Button>
133-
)
134-
}
135-
export default App;
128+
'use client'
129+
import { Button } from 'keep-react'
130+
const App = () => {
131+
return <Button size="md">Default</Button>
132+
}
133+
export default App
136134
```
137135

138136
## Components
@@ -143,6 +141,10 @@ The Keep React offers a wide range of components to build your user interfaces.
143141

144142
If you want to contribute to the Keep React, you can follow the [contributing guide](https://github.com/StaticMania/keep-react/blob/main/Contribute.md).
145143

144+
<a href="https://github.com/StaticMania/keep-react/graphs/contributors">
145+
<img src="https://contrib.rocks/image?repo=StaticMania/keep-react"/>
146+
</a>
147+
146148
## Figma
147149

148150
If you need access to Figma design files for the components, you can check out our website for more information:

0 commit comments

Comments
 (0)