Skip to content

Commit

Permalink
Added: Contributor Image in readme file.
Browse files Browse the repository at this point in the history
  • Loading branch information
Arifulislam5577 committed Jan 3, 2024
1 parent 5dac558 commit 42bd3ea
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,17 @@ pnpm add keep-react
following code:

```jsx
import keepPreset from "keep-react/preset";
import keepPreset from 'keep-react/preset'
export default {
content: ["node_modules/keep-react/**/*.{js,jsx,ts,tsx}"],
content: ['node_modules/keep-react/**/*.{js,jsx,ts,tsx}'],
presets: [keepPreset],
}
```

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

```css
@import "keep-react/css";
@import 'keep-react/css';
@tailwind base;
@tailwind components;
@tailwind utilities;
Expand Down Expand Up @@ -106,15 +106,15 @@ following code

```js
module.exports = {
content: ["node_modules/keep-react/**/*.{js,jsx,ts,tsx}"],
presets: [require("keep-react/preset")],
};
content: ['node_modules/keep-react/**/*.{js,jsx,ts,tsx}'],
presets: [require('keep-react/preset')],
}
```

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

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

```jsx
'use client';
import { Button } from "keep-react";
const App = () => {
return (
<Button size="md">Default</Button>
)
}
export default App;
'use client'
import { Button } from 'keep-react'
const App = () => {
return <Button size="md">Default</Button>
}
export default App
```

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

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).

<a href="https://github.com/StaticMania/keep-react/graphs/contributors">
<img src="https://contrib.rocks/image?repo=StaticMania/keep-react"/>
</a>

## Figma

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

0 comments on commit 42bd3ea

Please sign in to comment.