You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
422 B
16 lines
422 B
import React from 'react';
|
|
// highlight-next-line
|
|
import {polyfill} from 'react-lifecycles-compat';
|
|
|
|
class ExampleComponent extends React.Component {
|
|
// highlight-next-line
|
|
static getDerivedStateFromProps(props, state) {
|
|
// Your state update logic here ...
|
|
}
|
|
}
|
|
|
|
// Polyfill your component to work with older versions of React:
|
|
// highlight-next-line
|
|
polyfill(ExampleComponent);
|
|
|
|
export default ExampleComponent;
|
|
|