Skip to content
View StyleList94's full-sized avatar
  • 127.0.0.1:3000

Highlights

  • Pro

Block or report StyleList94

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
StyleList94/README.md

Lovely ❤️

#FrontEnd #DesignSystem #Blockchain

🚀 EXPerience

JavaScript TypeScript React Next.js Astro tailwindcss Storybook Vite webpack rollup.js Vitest Vercel Cloudflare Workers

Introduce

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[0],
    withDesignSystem: buildTool.at(-1),
    favoriteStyling: styling.values().next().value,
    domTesting: testing.filter((tool) => tool !== 'jest'),
    stateManagement: stateManagement.slice(0, 2),
  };
}

Pinned Loading

  1. create-stylish-app create-stylish-app Public

    Create a new Stylish JavaScript web app.

    JavaScript

  2. eslint-config-stylish eslint-config-stylish Public

    Stylish ESLint configuration for FE

    JavaScript