A
Anonymous

Quiz App Feature - Copy this React, Tailwind Component to your project

Giúp tôi tạo ui cho phần list ra. Có 2 phần là thuộc về admin và thuộc về clientimport React from 'react'; import { Link } from 'react router dom'; const Home = () => { return ( <div> <h1>Welcome to Quiz App</h1> <h2>Choose your role:</h2> <ul> <li> <h3>Admin</h3> <ul> <li><Link to="/admin/quiz">Manage Quiz</Link></li> </ul> </li> <li> <h3>Client</h3> <ul> <li><Link to="/quiz">Take Quiz</Link></li> </ul> </li> </ul> </div> ); }; export default Home;

Prompt
Component Preview

About

QuizAppFeature - A user-friendly UI for admins to manage quizzes and clients to take them, professionally built with React and Tailwind. Copy code today!

Share

Last updated 1 month ago