import * as React from 'react';
import {PageDecorater} from "./PageDecorator";
import {SimpleButton} from "../../../src/ts/index";
import SimpleCard from "../../../src/ts/SimpleCard/SimpleCard";
const style = require("./PageStyle.pcss");
var Ink = require("react-ink");
interface Props {
}
interface State {
}
const Highlight = require('react-highlight');
const codeBlock = `
you can click
`
@PageDecorater
export default class Playground1 extends React.Component{
constructor(props) {
super(props);
}
render() {
return (
SimpleButton
{codeBlock}
with react-ink
you can click
you can click
);
}
}