# react-mac-dock **Repository Path**: twp0217/react-mac-dock ## Basic Information - **Project Name**: react-mac-dock - **Description**: React Mac Dock(Mac 程序坞) - **Primary Language**: TypeScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-18 - **Last Updated**: 2021-09-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # react-mac-dock - Mac 程序坞 ## 使用 ```typescript import React from 'react'; import MacDock, { MacDockItem } from '@twp0217/react-mac-dock'; import './index.less'; export default () => { const items: MacDockItem[] = [ { label: 'nautilus', icon: 'https://twp0217.github.io/react-mac-dock/demo/nautilus.png', }, { label: 'opera', icon: 'https://twp0217.github.io/react-mac-dock/demo/opera.png', }, { label: 'addressbook', icon: 'https://twp0217.github.io/react-mac-dock/demo/addressbook.png', }, { label: 'dictionary', icon: 'https://twp0217.github.io/react-mac-dock/demo/dictionary.png', }, { label: 'update', icon: 'https://twp0217.github.io/react-mac-dock/demo/update.png', }, { label: 'settings', icon: 'https://twp0217.github.io/react-mac-dock/demo/settings.png', }, { label: 'trash', icon: 'https://twp0217.github.io/react-mac-dock/demo/trash.png', }, ]; return (