From 04447d302c2f6d89c44cb3c19caabfb3ae0a1768 Mon Sep 17 00:00:00 2001 From: Brandon Dail Date: Mon, 14 Nov 2016 17:37:02 -0600 Subject: [PATCH] Merge pull request #8277 from qiuyuntao/master docs: delete unnecessary brackets (cherry picked from commit 024f62ecfe915387a8a5d0ee972598b75799cb38) --- docs/docs/web-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/web-components.md b/docs/docs/web-components.md index aae501da8d..4063db0e1c 100644 --- a/docs/docs/web-components.md +++ b/docs/docs/web-components.md @@ -21,7 +21,7 @@ class HelloMessage extends React.Component { > Note: > -> Web Components often expose an imperative API. For instance, a `video` Web Component might expose `play()` and `pause()` functions). To access the imperative APIs of a Web Component, you will need to use a ref to interact with the DOM node directly. If you are using third-party Web Components, the best solution is to write a React component that behaves as a wrapper for your Web Component. +> Web Components often expose an imperative API. For instance, a `video` Web Component might expose `play()` and `pause()` functions. To access the imperative APIs of a Web Component, you will need to use a ref to interact with the DOM node directly. If you are using third-party Web Components, the best solution is to write a React component that behaves as a wrapper for your Web Component. > > Events emitted by a Web Component may not properly propagate through a React render tree. > You will need to manually attach event handlers to handle these events within your React components.