From 94ca9d7d1fe825b3da834dcf73ef58e272ae5a34 Mon Sep 17 00:00:00 2001 From: siriwatknp Date: Fri, 23 Aug 2024 13:53:21 +0700 Subject: [PATCH] lesson guide --- src/App.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/App.tsx b/src/App.tsx index 48601cf..92fb395 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,4 +1,9 @@ +// 1. Install Material UI (https://next.mui.com/material-ui/getting-started/installation/) + +// 2. Import the Button component from Material UI (https://next.mui.com/material-ui/react-button/) + function App() { + // 3. Render the button (https://next.mui.com/material-ui/react-button/#basic-button) return <>Hello; }