You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
331 B

#ifndef CPPJS_COMPONENT_H
#define CPPJS_COMPONENT_H
class Component {
private:
// =================== HTML TEMPLATE =================== //
char* tmpl = R"V0G0N(
<h1>Hello, world!</h1>
<p>This is a test hello message!</p>
)V0G0N";
// ================= / HTML TEMPLATE =================== //
};
#endif //CPPJS_COMPONENT_H