17 lines
371 B
TypeScript
17 lines
371 B
TypeScript
import { render_and_copy } from "./common.tsx";
|
|
import { Post } from "./one-post.tsx";
|
|
|
|
const DASH_BG = "#36465D";
|
|
// mainly doing this in pch, but i'll gen a chost for a funny
|
|
|
|
render_and_copy(
|
|
<Post
|
|
headline="hey guys"
|
|
username="mehbark"
|
|
posted="10.2 hr. ago"
|
|
n_comments={413}
|
|
>
|
|
oh wait oops wrong website
|
|
</Post>
|
|
);
|