Hyds0
Madlavning   Tune, Roskilde, Denmark
 
 
Hej mine livsdrømme er at blive en kok. Mine største inspirationer er Gordon Ramsay og Jonathan Berntsen
正在線上
MeAimLeg 2023 年 4 月 24 日 上午 7:57 
Enzu <3
Leolulu 2022 年 4 月 19 日 下午 4:36 
React components implement a render() method that takes input data and returns what to display. This example uses an XML-like syntax called JSX. Input data that is passed into the component can be accessed by render() via this.props.

JSX is optional and not required to use React. Try the Babel REPL to see the raw JavaScript code produced by the JSX compilation step.
Leolulu 2022 年 4 月 19 日 下午 4:36 
class MarkdownEditor extends React.Component {
constructor(props) {
super(props);
this.md = new Remarkable();
this.handleChange = this.handleChange.bind(this);
this.state = { value: 'Hello, **world**!' };
}

handleChange(e) {
this.setState({ value: e.target.value });
}

getRawMarkup() {
return { __html: this.md.render(this.state.value) };
}
Leolulu 2022 年 4 月 19 日 下午 4:35 
class Timer extends React.Component {
constructor(props) {
super(props);
this.state = { seconds: 0 };
}

tick() {
this.setState(state => ({
seconds: state.seconds + 1
}));
}

componentDidMount() {
this.interval = setInterval(() => this.tick(), 1000);
}
Gydegufferen 2022 年 1 月 24 日 下午 2:40 
Nice guy, easy to talk with, BIG +rep
Leolulu 2021 年 11 月 5 日 上午 1:13 
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/svg.css">
<link rel="stylesheet" href="css/img.css">