@nbamford123/arwes
Version:
Futuristic Sci-Fi and Cyberpunk Graphical User Interface Framework for Web Apps
18 lines (17 loc) • 520 B
Markdown
```javascript
render(
<Arwes>
<div style={{ padding: 20 }}>
<Table
animate
headers={['Prop name', 'Type', 'Default', 'Description']}
dataset={[
['name', 'string', '\'\'', 'The base name of the component'],
['age', 'number', '0', 'The age of the component'],
['married', 'bool', 'false', 'If the component is married'],
]}
/>
</div>
</Arwes>
);
```