https://github.com/stylelist94/stylelist94
https://github.com/stylelist94/stylelist94
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/stylelist94/stylelist94
- Owner: StyleList94
- Created: 2020-11-24T10:00:09.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-08-15T15:16:12.000Z (10 months ago)
- Last Synced: 2025-09-09T01:22:39.540Z (9 months ago)
- Homepage:
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## ❤️ Likes
\#**FrontEnd** \#DesignSystem \#_Blockchain_
## 🚀 EXPerience
[](https://github.com/StyleList94?tab=repositories&language=javascript)
[](https://github.com/StyleList94?tab=repositories&language=typescript)
[](https://github.com/StyleList94?tab=repositories&q=react)
[](https://github.com/StyleList94?tab=repositories&q=nextjs)
[](https://github.com/StyleList94?tab=repositories&q=astro)
[](https://github.com/StyleList94?tab=repositories&q=tailwindcss)
[](https://github.com/StyleList94?tab=repositories&q=vite)
[](https://github.com/StyleList94?tab=repositories&q=webpack)
[](https://github.com/StyleList94?tab=repositories&q=rollupjs)
[](https://github.com/StyleList94?tab=repositories&q=vitest)
[](https://github.com/StyleList94?tab=repositories&q=storybook)
[](https://github.com/StyleList94?tab=repositories&q=vercel)
[](https://github.com/StyleList94?tab=repositories&q=cloudflare-workers)
## Introduce
```ts
import * as React from 'react';
export default function useIntroduce() {
const [sexuality] = React.useState('man');
const [framework] = React.useState(['Next.js', 'Astro']);
const [buildTool] = React.useState(['webpack', 'rollup.js', 'Vite']);
const [styling] = React.useState(['tailwindcss', 'styled-components', 'CSS']);
const [testing] = React.useState(['vitest', 'jest', 'testing-library']);
const [stateManagement] = React.useState(['redux', 'zustand', 'recoil']);
return {
sexuality,
mainFramework: framework[1],
withDesignSystem: buildTool.at(-1),
favoriteStyling: styling.values().next().value,
domTesting: testing.filter((tool) => tool !== 'jest'),
stateManagement: stateManagement.slice(0, 2),
};
}
```