Skip to content

Commit

Permalink
fix: typo in zh signals.md (#1221)
Browse files Browse the repository at this point in the history
'称为' -> '成为'
  • Loading branch information
linghaoSu authored Jan 7, 2025
1 parent c1f0baa commit 8a93ca5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/zh/guide/v10/signals.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ function App() {

## 使用信号的本地状态

应用的大部分状态最终都是使用props和context传递的。但是,在许多情况下,组件具有特定于该组件的内部状态。没有理由让这些状态称为全局业务逻辑的一部分,因此应将其限制于需要它的组件中。在这些情况下,我们可以使用`useSignal()``useComputed()` 钩子:
应用的大部分状态最终都是使用props和context传递的。但是,在许多情况下,组件具有特定于该组件的内部状态。没有理由让这些状态成为全局业务逻辑的一部分,因此应将其限制于需要它的组件中。在这些情况下,我们可以使用`useSignal()``useComputed()` 钩子:

```jsx
import { useSignal, useComputed } from "@preact/signals";
Expand Down

0 comments on commit 8a93ca5

Please sign in to comment.