import { Counter } from '../components/counter'; import { TextInput } from '../components/textInput'; import { RouterLink } from '../components/routerLink'; import { HtmlInput } from '../components/htmlInput'; export default () => { return `
${Counter()}

${TextInput()}

${HtmlInput()}

1 + 2 = {1 + 2}

The count is exactly 0.

The count is exactly 1.

The count is not 0 or 1.

"string" substringed with 0, 1 = {"string".substring(0, 1)}
Go to ${RouterLink('/page2', 'Page 2')}
`; } export const layout = 'default'