Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 390 Bytes

08-refactoring.md

File metadata and controls

18 lines (15 loc) · 390 Bytes

08 Refactoring

Paths

// tsconfig.json
"paths": {
  "@libs/*": ["libs/*"],
  "@components/*": ["components/*"]
}

// pages/index.tsx
import FloatingButton from '@components/floating-button';
import Item from '@components/item';
import Layout from '@components/layout';
import useUser from '@libs/client/useUser';
import client from '@libs/server/client';