aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/react/test/fixtures/react-component/src/components/Pure.jsx
blob: 6fae8613b230403e1245390d4bec1835d038189c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import React from 'react';

export default class StaticComponent extends React.PureComponent {

    render() {
        return (
            <div id="pure">
                <h1>Static component</h1>
            </div>
        )
    }

}