diff --git a/examples/filtering-client-side/src/App.js b/examples/filtering-client-side/src/App.js
index 4cf2ca5..d510680 100644
--- a/examples/filtering-client-side/src/App.js
+++ b/examples/filtering-client-side/src/App.js
@@ -123,9 +123,9 @@ function SliderColumnFilter({ filterValue, setFilter, preFilteredRows, id }) {
function NumberRangeColumnFilter({ filterValue = [], setFilter }) {
return (
[val ? parseInt(val, 10) : undefined, old[1]])
}}
placeholder="Min"
- css={`
- width: 70px;
- margin-right: 0.5rem;
- `}
+ style={{
+ width: '70px',
+ marginRight: '0.5rem',
+ }}
/>
to
[old[0], val ? parseInt(val, 10) : undefined])
}}
placeholder="Max"
- css={`
- width: 70px;
- margin-left: 0.5rem;
- `}
+ style={{
+ width: '70px',
+ marginLeft: '0.5rem',
+ }}
/>
)
diff --git a/examples/grouping-client-side/src/App.js b/examples/grouping-client-side/src/App.js
index 41d5806..277ac5e 100644
--- a/examples/grouping-client-side/src/App.js
+++ b/examples/grouping-client-side/src/App.js
@@ -139,34 +139,34 @@ function Table({ columns, data }) {
function Legend() {
return (
Grouped
{' '}
Aggregated
{' '}
Repeated Value