blob: 9d866572782ea9428a6195ab51173e8a4c1e854c (
plain)
1
2
3
4
5
6
7
8
9
10
|
import $ from "jquery";
import * as JSX from "./jsx";
import { Page } from "./components";
import { AsciiArt } from "./ascii-art";
export default function Blog() {
return <Page>
work in progress (:
</Page>
}
|