J3FF THE B4BY SHARK
Jens   Ukraine
 
 
Killed you on my Macbook
В сети
Комментарии
MeAimLeg 24 апр. 2023 г. в 7:57 
Enzu <3
Leolulu 19 апр. 2022 г. в 16: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 19 апр. 2022 г. в 16: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 19 апр. 2022 г. в 16: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 24 янв. 2022 г. в 14:40 
Nice guy, easy to talk with, BIG +rep
Leolulu 5 ноя. 2021 г. в 1:13 
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/svg.css">
<link rel="stylesheet" href="css/img.css">