• This project
    • Loading...
  • Sign in

한우준 / Straight-Up

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • Straight-Up
  • straight-up
  • src
  • components
  • Checkbox.js
  • MrMirror21's avatar
    add user choice for position of photos · 13b49b2f
    13b49b2f
    MrMirror21 authored 2020-12-10 03:03:37 +0900
Checkbox.js 266 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
import React from 'react'

const Checkbox = (props) => {
    return (
        <input
            type="checkbox"
            checked={props.checked}
            onChange={(e) => props.onChange(e.target.checked)}
        />
    )
}
export default Checkbox;