Skip to content

Instantly share code, notes, and snippets.

View kabitacode's full-sized avatar
🎯
Focusing

Muhamad Zulfiqor kabitacode

🎯
Focusing
View GitHub Profile
<template>
<div>
<ul v-for="user in users" :key="user.id">
<li>
<span>{{user.name}}</span> &#160;
</li>
</ul>
</div>
</template>
@oncode
oncode / write-an-open-source-js-lib.md
Created March 6, 2017 08:28 — forked from deadcoder0904/write-an-open-source-js-lib.md
How to Write an Open Source JavaScript Library
import React, { Component, PropTypes } from 'react'
import { View, UIManager, findNodeHandle, TouchableOpacity } from 'react-native'
import Icon from 'react-native-vector-icons/MaterialIcons'
const ICON_SIZE = 24
export default class PopupMenu extends Component {
static propTypes = {
// array of strings, will be list items of Menu
actions: PropTypes.arrayOf(PropTypes.string).isRequired,
@tsabat
tsabat / zsh.md
Last active December 25, 2023 19:16
Getting oh-my-zsh to work in Ubuntu