# Introduction 🚀

TIP

Anatta Design Component Library is one and only place to look for developement process

Anatta design common vue component library. Working with agency like anatta design should be a best experience and to accomplish those needs, we have this platform to get collaboration from every developer.

# Getting Started

Too get started working with this platform, there are some basic prerequisite.

WARNING

Let's put you on 🔥 Components

# Directory structure Docs 📖

├── README.md
├── deploy.sh
├── docs
│   ├── README.md
│   ├── components
│   │   ├── README.md
│   │   ├── base-anchor.md
│   │   ├── base-component.md
│   │   ├── counter.md
│   │   ├── input-tags.md
│   │   ├── modal.md
│   │   └── tab-structure.md
│   └── guide.md
├── package.json
└── yarn.lock

# Directory structure Components 📖

├── README.md
├── babel.config.js
├── jest.config.js
├── main.js
├── package-lock.json
├── package.json
├── src
│   ├── assets
│   │   ├── component.png
│   │   └── components.png
│   ├── components
│   │   ├── Anchor
│   │   │   ├── Anchor.spec.js
│   │   │   ├── Anchor.vue
│   │   │   └── index.js
│   │   ├── Counter
│   │   │   ├── Counter.spec.js
│   │   │   ├── Counter.vue
│   │   │   └── index.js
│   │   ├── DynamicTabStructure
│   │   │   ├── DynamicTabStructure.vue
│   │   │   └── index.js
│   │   ├── FunctionalComponent
│   │   │   ├── FunctionalComponent.spec.ts
│   │   │   ├── FunctionalComponent.vue
│   │   │   └── index.js
│   │   ├── InputTags
│   │   │   ├── InputTags.spec.js
│   │   │   ├── InputTags.vue
│   │   │   └── index.js
│   │   ├── Modal
│   │   │   ├── Modal.spec.js
│   │   │   ├── Modal.vue
│   │   │   └── index.js
│   │   ├── StandardComponent
│   │   │   ├── StandardComponent.ts
│   │   │   ├── StandardComponent.vue
│   │   │   └── index.js
│   │   └── index.js
│   ├── shims-tsx.d.ts
│   └── shims-vue.d.ts
└── tsconfig.json