Skip to content

Commit

Permalink
Cleanup from review
Browse files Browse the repository at this point in the history
  • Loading branch information
mofojed committed Nov 12, 2024
1 parent 3f20daa commit a10e556
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/ui/docs/hooks/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Hooks

_Hooks_ let you use state and other deephaven.ui features in your components. They are a way to reuse stateful logic between components. Hooks are functions that let you "hook into" state and lifecycle features from function components. You can either use the built-in hooks or combine them to build your own.
_Hooks_ let you use state and other deephaven.ui features in your components. Hooks are functions that let you "hook into" state and lifecycle features from function components, encapsulating code and logic to avoid duplication. You can either use the built-in hooks or combine them to build your own.

## Example

Expand Down
2 changes: 1 addition & 1 deletion plugins/ui/docs/hooks/use_cell_data.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# use_cell_data

`use_cell_data` lets you use the cell data of the first cell in a table. This is useful when you want to listen to an updating table and use the data in your component.
`use_cell_data` lets you use the cell data of the first cell (first row in the first column) in a table. This is useful when you want to listen to an updating table and use the data in your component.

## Example

Expand Down
2 changes: 1 addition & 1 deletion plugins/ui/docs/hooks/use_column_data.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# use_column_data

`use_column_data` lets you use the column data of a table. This is useful when you want to listen to an updating table and use the data in your component.
`use_column_data` lets you use the data of the first column of a table. This is useful when you want to listen to an updating table and use the data in your component.

## Example

Expand Down

0 comments on commit a10e556

Please sign in to comment.