small refactors

This commit is contained in:
2025-12-20 21:05:57 +01:00
parent 47f052f913
commit 36f8b6d8b2
5 changed files with 37 additions and 14 deletions

8
include/widgets/todo.hpp Normal file
View File

@@ -0,0 +1,8 @@
#pragma once
#include "components/popover.hpp"
class Todo : public Popover {
public:
Todo(std::string icon, std::string title);
};