-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6efd2d8
commit a97b6e8
Showing
6 changed files
with
205 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,34 @@ | ||
# Introduction | ||
--- | ||
layout: home | ||
|
||
hero: | ||
name: 'Kita Html' | ||
text: 'The fastest server side JSX runtime' | ||
tagline: Just like your usual template engine, but just better! | ||
actions: | ||
- theme: brand | ||
text: Render JSX → | ||
link: ./configuration.md | ||
- theme: alt | ||
text: Integrations | ||
link: ./integrations.md | ||
- theme: alt | ||
text: Benchmark | ||
link: ./benchmark.md | ||
image: | ||
src: /doug-pc-glasses.svg | ||
alt: Doug, Kita's turtle mascot, with glasses looking at a computer screen | ||
--- | ||
|
||
```tsx | ||
// this is true | ||
typeof (<div>hello</div>) === 'string'; | ||
|
||
// Simply write JSX and write it to a file | ||
fs.writeFileSync( | ||
'index.html', | ||
<p> | ||
Hello, <strong>world</strong>! | ||
</p> | ||
); | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters