16 lines
316 B
Rust
16 lines
316 B
Rust
|
use super::Post;
|
||
|
use yew::html;
|
||
|
|
||
|
pub const POST: Post = Post {
|
||
|
title: "wowowowow33333333!",
|
||
|
timestamp: 1743710399,
|
||
|
content: || {
|
||
|
html! {
|
||
|
<div>
|
||
|
<p>{"hello world"}</p><br />
|
||
|
<p>{"this is an \"example113!!{}\""}</p>
|
||
|
</div>
|
||
|
}
|
||
|
},
|
||
|
};
|