From 397b93d3f81b7207b6a85f470a47b112770eff96 Mon Sep 17 00:00:00 2001 From: Kiichi Tachibana Date: Fri, 15 Feb 2019 18:22:49 +0900 Subject: [PATCH] Translate faq-functions (#111) * Translate faq-functions * Fix lint errors * Add empty line * Remove unnecessary section * Fix lint errors * Apply suggestions from code review Co-Authored-By: ossan-engineer * Fix translation * Fix translation * Fix translation * Apply suggestions from code review Co-Authored-By: ossan-engineer --- content/docs/faq-functions.md | 100 +++++++++++++++++----------------- 1 file changed, 50 insertions(+), 50 deletions(-) diff --git a/content/docs/faq-functions.md b/content/docs/faq-functions.md index 62067d39c..6c9aabccc 100644 --- a/content/docs/faq-functions.md +++ b/content/docs/faq-functions.md @@ -1,26 +1,26 @@ --- id: faq-functions -title: Passing Functions to Components +title: コンポーネントに関数を渡す permalink: docs/faq-functions.html layout: docs category: FAQ --- -### How do I pass an event handler (like onClick) to a component? {#how-do-i-pass-an-event-handler-like-onclick-to-a-component} +### コンポーネントに(onClick のような)イベントハンドラを渡すには? {#how-do-i-pass-an-event-handler-like-onclick-to-a-component} -Pass event handlers and other functions as props to child components: +イベントハンドラやその他の関数を props として、子コンポーネントに渡してください。 ```jsx