responsive-system 1.4.1 → 1.4.2
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/package.json +1 -1
- package/scripts/postinstall.js +2 -2
package/package.json
CHANGED
package/scripts/postinstall.js
CHANGED
|
@@ -685,7 +685,7 @@ ReactDOM.createRoot(document.getElementById('root')!).render(
|
|
|
685
685
|
import { useResponsive } from '../hooks'
|
|
686
686
|
|
|
687
687
|
function HomePage() {
|
|
688
|
-
const { breakpoint, isMobile } = useResponsiveLayout()
|
|
688
|
+
const { breakpoint, isMobile, layout } = useResponsiveLayout()
|
|
689
689
|
const responsive = useResponsive()
|
|
690
690
|
|
|
691
691
|
return (
|
|
@@ -752,7 +752,7 @@ function HomePage() {
|
|
|
752
752
|
para configuración manual cuando lo necesites.
|
|
753
753
|
</p>
|
|
754
754
|
<p>
|
|
755
|
-
<strong className="text-gray-900">Layout actual:</strong> <span className="capitalize">{
|
|
755
|
+
<strong className="text-gray-900">Layout actual:</strong> <span className="capitalize">{layout.current}</span>
|
|
756
756
|
</p>
|
|
757
757
|
</div>
|
|
758
758
|
</div>
|