mirror of
https://github.com/vale981/apheleia
synced 2025-03-05 17:41:41 -05:00
11 lines
164 B
JavaScript
11 lines
164 B
JavaScript
function HelloWorld({
|
|
greeting = "hello",
|
|
greeted = '"World"',
|
|
silent = false,
|
|
onMouseOver,
|
|
}) {
|
|
|
|
if (!greeting) {
|
|
return null
|
|
};
|
|
}
|