From ae966882d1cf9d564d7307b3af6cce277c316867 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20FAMIBELLE-PRONZOLA?= Date: Sat, 22 Jan 2022 14:49:46 +0400 Subject: [PATCH] Replace Button by Box in index --- components/kat-kay-la.js | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/components/kat-kay-la.js b/components/kat-kay-la.js index f135d97..4513952 100644 --- a/components/kat-kay-la.js +++ b/components/kat-kay-la.js @@ -2,7 +2,7 @@ import PropTypes from 'prop-types' import {useRouter} from 'next/router' import { Grid, - Button + Box } from '@mui/material' export default function KatKayLa({tit, kantite, route}) { @@ -10,9 +10,18 @@ export default function KatKayLa({tit, kantite, route}) { return ( - + ) }