put stuff in main div for style
now for twitter imitation
This commit is contained in:
parent
3de300ffa5
commit
e071e48616
1 changed files with 52 additions and 49 deletions
|
@ -1,3 +1,4 @@
|
|||
import { Main } from "./common.tsx";
|
||||
import { Html, debug_render, render } from "./html.ts";
|
||||
import { Component } from "./jsx/jsx-runtime.ts";
|
||||
|
||||
|
@ -43,53 +44,55 @@ const Take: Component = ({ subjects, objects, adjectives }, _) => (
|
|||
// might want to have the final item be seperate
|
||||
// turned out to be unnecessary
|
||||
debug_render(
|
||||
<Take
|
||||
subjects={peopleify(
|
||||
"poor",
|
||||
"fat",
|
||||
"dumb",
|
||||
"tall",
|
||||
"short",
|
||||
"poor",
|
||||
"fat",
|
||||
"dumb",
|
||||
"tall",
|
||||
"hot"
|
||||
)}
|
||||
objects={[
|
||||
"apples",
|
||||
"bread",
|
||||
"pasta",
|
||||
"candy",
|
||||
"rice",
|
||||
"beans",
|
||||
"apples",
|
||||
"bread",
|
||||
"candy",
|
||||
"rice",
|
||||
"beans",
|
||||
"apples",
|
||||
"bread",
|
||||
"pasta",
|
||||
"candy",
|
||||
"rice",
|
||||
"croissants",
|
||||
]}
|
||||
adjectives={[
|
||||
"vibes",
|
||||
"mean",
|
||||
"dumb",
|
||||
"cool",
|
||||
"hot",
|
||||
"stupid",
|
||||
"funny",
|
||||
"vibes",
|
||||
"mean",
|
||||
"dumb",
|
||||
"cool",
|
||||
"hot",
|
||||
"stupid",
|
||||
"dangerous",
|
||||
]}
|
||||
/>
|
||||
<Main>
|
||||
<Take
|
||||
subjects={peopleify(
|
||||
"poor",
|
||||
"fat",
|
||||
"dumb",
|
||||
"tall",
|
||||
"short",
|
||||
"poor",
|
||||
"fat",
|
||||
"dumb",
|
||||
"tall",
|
||||
"hot"
|
||||
)}
|
||||
objects={[
|
||||
"apples",
|
||||
"bread",
|
||||
"pasta",
|
||||
"candy",
|
||||
"rice",
|
||||
"beans",
|
||||
"apples",
|
||||
"bread",
|
||||
"candy",
|
||||
"rice",
|
||||
"beans",
|
||||
"apples",
|
||||
"bread",
|
||||
"pasta",
|
||||
"candy",
|
||||
"rice",
|
||||
"croissants",
|
||||
]}
|
||||
adjectives={[
|
||||
"vibes",
|
||||
"mean",
|
||||
"dumb",
|
||||
"cool",
|
||||
"hot",
|
||||
"stupid",
|
||||
"funny",
|
||||
"vibes",
|
||||
"mean",
|
||||
"dumb",
|
||||
"cool",
|
||||
"hot",
|
||||
"stupid",
|
||||
"dangerous",
|
||||
]}
|
||||
/>
|
||||
</Main>
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue