import React from 'react' import PropTypes from 'prop-types' import Codemirror from 'react-codemirror'; CodeEditor.propTypes = { content: PropTypes.string.isRequired, onChange: PropTypes.func.isRequired, } export default function CodeEditor ( { content, onChange} ){ let options = { lineNumbers: true }; return (
e.stopPropagation()}>
) } er'> cgit logo index : avr/qmk/lufa
[no description]
aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/Board/Temperature.c
blob: 06f25044a079e904f10d218bddaf3b168eefb674 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66