> [!NOTE] > This project is part of the [ZikoJS](https://github.com/zakarialaoui10/ziko.js) ecosystem.
npm install ziko-atropos> [!NOTE]
> This project is part of the ZikoJS ecosystem.
bash
npm i ziko-atropos
`
Usage
`js
import { Atropos } from 'ziko-atropos'
import { tags } from 'ziko/ui'
const a = Atropos(
tags.div().style({
width : '100%',
height : '100%',
background : 'blue'
})
).style({
border : '2px darkblue dotted',
width : '400px',
height : '300px',
margin : '20px auto'
})
a.mount(document.body)
``