Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions samples/grids/grid/column-pinning-both-sides/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ export default function App() {
<IgrGridToolbar>
<IgrGridToolbarActions>
<IgrButton variant="contained" onClick={unpinColumn}>
Unpin Column
Unpin Selected Columns
</IgrButton>
<IgrButton variant="contained" onClick={pinLeft}>
Pin Left
Pin Selected Left
</IgrButton>
<IgrButton variant="contained" onClick={pinRight}>
Pin Right
Pin Selected Right
</IgrButton>
</IgrGridToolbarActions>
</IgrGridToolbar>
Expand All @@ -115,5 +115,5 @@ export default function App() {
}

// rendering above component in the React DOM
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<App />);
const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(<App />);
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@ export default function App() {
<IgrGridToolbar>
<IgrGridToolbarActions>
<IgrButton variant="contained" onClick={unpinColumn}>
Unpin Column
Unpin Selected Columns
</IgrButton>
<IgrButton variant="contained" onClick={pinLeft}>
Pin Left
Pin Selected Left
</IgrButton>
<IgrButton variant="contained" onClick={pinRight}>
Pin Right
Pin Selected Right
</IgrButton>
</IgrGridToolbarActions>
</IgrGridToolbar>
Expand Down Expand Up @@ -192,5 +192,5 @@ export default function App() {
}

// rendering above component in the React DOM
const root = ReactDOM.createRoot(document.getElementById('root'));
const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(<App />);
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ export default function App() {
<IgrGridToolbar>
<IgrGridToolbarActions>
<IgrButton variant="contained" onClick={unpinColumn}>
Unpin Column
Unpin Selected Columns
</IgrButton>
<IgrButton variant="contained" onClick={pinLeft}>
Pin Left
Pin Selected Left
</IgrButton>
<IgrButton variant="contained" onClick={pinRight}>
Pin Right
Pin Selected Right
</IgrButton>
</IgrGridToolbarActions>
</IgrGridToolbar>
Expand Down Expand Up @@ -127,5 +127,5 @@ export default function App() {
}

// rendering above component in the React DOM
const root = ReactDOM.createRoot(document.getElementById('root'));
const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(<App />);