Skip to content

Commit 5662fbe

Browse files
committed
[REF]: refactor Readme file
1 parent 879e63b commit 5662fbe

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717

1818
## Description
1919

20-
Dropzone UI is a mini set of [React](https://reactjs.org/) components for managing file uploads. Components were made following some of the good google's Material design principles.
20+
Dropzone UI is a mini set of [React](https://reactjs.org/) components for managing file uploads, image previews and all with **little** code needed. Components were made inspired on other existing libraries like [react-dropzone](https://www.npmjs.com/package/react-dropzone) and [dropzonejs](https://www.npmjs.com/package/dropzone). Also, following some of the good google's Material design principles and icons.
2121

2222
## Sample result:
2323

24-
On `Drag`, `drop` and `upload`. (also changing view mode from `grid` to `list`)
24+
On `Drag`, `Drop` and `Upload`. (also changing view mode from `grid` to `list`)
2525

2626
<p align="center">
2727
<img align="center" width="35%" src="https://user-images.githubusercontent.com/43678736/132642335-dc7e7ceb-ae86-4f81-8625-4ee28dc5f593.png" alt="dropone-ui-logo"><img align="center" width="35%" src="https://user-images.githubusercontent.com/43678736/132642336-e295d84d-d950-43b2-b9fc-0529b4ecfe46.png" alt="dropone-ui-logo"><img align="center" width="35%" src="https://user-images.githubusercontent.com/43678736/132642339-2cd996a3-7754-46c9-89ed-56291972154f.png" alt="dropone-ui-logo"><img align="center" width="35%" src="https://user-images.githubusercontent.com/43678736/132642341-b1eb2bfe-8134-4cdf-a808-62b14058b4c1.png" alt="dropone-ui-logo">
@@ -30,7 +30,7 @@ On `Drag`, `drop` and `upload`. (also changing view mode from `grid` to `list`)
3030

3131
## Installation
3232

33-
Dropzone-ui is available as an [npm package](https://www.npmjs.com/package/dropzone-ui).
33+
dropzone-ui is available as an [npm package](https://www.npmjs.com/package/dropzone-ui).
3434

3535
For uploading files, peer dependency [axios](https://www.npmjs.com/package/axios) must be installed together
3636

@@ -52,7 +52,7 @@ Here is a quick example to get you started, **it's all you need**:
5252
import React from "react";
5353
import ReactDOM from "react-dom";
5454
import { Dropzone, FileItem } from "dropzone-ui";
55-
`Function` App() {
55+
Function App() {
5656
const [files, setFiles] = useState([]);
5757
const updateFiles = (incommingFiles) => {
5858
setFiles(incommingFiles);

0 commit comments

Comments
 (0)