Skip to content

Instantly share code, notes, and snippets.

View NaitoKenzo's full-sized avatar

Kenzo Naito NaitoKenzo

  • Lalilo
  • Paris
View GitHub Profile
@NaitoKenzo
NaitoKenzo / Button.screenshot.js
Last active February 28, 2019 09:46
Visual bugs
import React from 'react'
import { Key } from '.'
const testCases = [
{ status: 'DISABLED' },
{ status: 'SELECTABLE' },
{ status: 'SUBMITTED' },
{ status: 'SELECTED' },
{ status: 'USED' },

Keybase proof

I hereby claim:

  • I am naitokenzo on github.
  • I am naitokenzo (https://keybase.io/naitokenzo) on keybase.
  • I have a public key ASA4LJQQykXg6-8QJKKLytKjmkPbx_9Xo9jUwpWsvyF5gAo

To claim this, I am signing this object:

@NaitoKenzo
NaitoKenzo / coding-battle.js
Created April 28, 2016 08:54
Coding Battle
// Part of Q5
function Component (el) {
this.el = el
this.el.addEventListener(‘click’, () => {
this.logClick()
})
}
let total = () => {