This application ensures an intuitive user experience across various platforms while providing robust functionality for managing user data efficiently.
This application provides a responsive and dynamic interface for managing user information. It includes the following key features:
- User Information Display: The app displays essential user details, including name, username, email, and phone number in a structured format.
- Advanced Filtering: An integrated search feature allows users to filter the table by name, username, email, and phone, making it easy to find specific records quickly.
- Responsive Design: The application adapts to different devices with tailored behaviors:
- Desktop: Displays user data in a traditional table format for a comprehensive view.
- Tablet: Transforms the data into a slider format for easier navigation on medium-sized screens.
- Mobile: Presents the information in a list format for optimal viewing on smaller devices.
- Use the link to start using the application
-
Clone the repository:
git clone https://github.com/IvanRuskevych/smart-app.git
&cd smart-app
-
Install dependencies:
npm install
-
Start in development mode:
npm run dev
-
Open a web browser and go to:
http://localhost:5173/smart-app/
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
Currently, two official plugins are available:
- @vitejs/plugin-react uses Babel for Fast Refresh
- @vitejs/plugin-react-swc uses SWC for Fast Refresh
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
- Configure the top-level
parserOptions
property like this:
export default tseslint.config({
languageOptions: {
// other options...
parserOptions: {
project: ['./tsconfig.node.json', './tsconfig.app.json'],
tsconfigRootDir: import.meta.dirname,
},
},
})
- Replace
tseslint.configs.recommended
totseslint.configs.recommendedTypeChecked
ortseslint.configs.strictTypeChecked
- Optionally add
...tseslint.configs.stylisticTypeChecked
- Install eslint-plugin-react and update the config:
// eslint.config.js
import react from 'eslint-plugin-react'
export default tseslint.config({
// Set the react version
settings: { react: { version: '18.3' } },
plugins: {
// Add the react plugin
react,
},
rules: {
// other rules...
// Enable its recommended rules
...react.configs.recommended.rules,
...react.configs['jsx-runtime'].rules,
},
})