scaffold checkboxes

This commit is contained in:
SpikeHD
2022-05-08 19:43:53 -07:00
parent 1a894bd6d4
commit 1eb68ae3ff
2 changed files with 15 additions and 0 deletions

View File

View File

@@ -0,0 +1,15 @@
import React from 'react'
interface IProps {
}
interface IState {
}
export default class Checkbox extends React.Component<IProps, IState> {
constructor(props: IProps) {
super(props)
}
}