lines-overlay 0.1.24 → 0.1.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,19 +26,19 @@ Este pacote assume que o seu projeto já usa:
|
|
|
26
26
|
## Uso básico
|
|
27
27
|
|
|
28
28
|
```tsx
|
|
29
|
-
import {
|
|
29
|
+
import { LinesOverlay } from 'lines-overlay';
|
|
30
30
|
|
|
31
31
|
export function App() {
|
|
32
32
|
return (
|
|
33
33
|
<div>
|
|
34
34
|
{/* Sua interface normal aqui */}
|
|
35
|
-
<
|
|
35
|
+
<LinesOverlay />
|
|
36
36
|
</div>
|
|
37
37
|
);
|
|
38
38
|
}
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
-
Ao incluir o componente `
|
|
41
|
+
Ao incluir o componente `LinesOverlay` em qualquer lugar do seu aplicativo React, um botão “Mostrar linhas” aparece fixo no canto inferior direito.
|
|
42
42
|
|
|
43
43
|
- **Atalho de teclado**
|
|
44
44
|
- `Ctrl + ;` também alterna entre mostrar/ocultar as linhas.
|