Grid component example:

[ag-Grid API](https://www.ag-grid.com/documentation-main/documentation.php)

```jsx static
import React from 'react';
import { Grid } from 'polestar-ui-kit';

class MyComponent extends React.Component {

    render() {
        return (
            <Grid
                id={'jejuGrid'}
                ref={(grid) => { this.gridRef = grid; }}
                header={{
                    title: '제주도 주소',
                    onAdd: onAdd,
                    onRemove: onRemove,
                }}
                request={{
                    url: 'http://192.168.232.211:9999/grid/performance/getData',
                    params: {
                        name: '홍길동',
                        ip: '192.168.100.1',
                    }
                }}
                itemsKey="rows"
                totalCountKey="total"
                columnDefs={createColumnDefs()}
                height={600}
            />
        );
    }
}

export default MyComponent;
```