+
Kill List
+
+ After each pilot day: identify the 3 biggest irritations.
+ Fix only those before next pilot day.
+
+
+
+
+ Progress
+ {fixedCount}/{items.length}
+
+
+
+
+
+ {items.map(item => (
+
+
+
+ #{item.priority} {item.text}
+
+
+
+
+ ))}
+
+
+
+ {
+ if (e.key === 'Enter') {
+ addItem(e.currentTarget.value);
+ e.currentTarget.value = '';
+ }
+ }}
+ style={{
+ width: '100%',
+ padding: 12,
+ border: '1px solid #ccc',
+ borderRadius: 8,
+ fontSize: 16,
+ }}
+ />
+
+
+ );
+}
+
+export default KillList;