From 22fa940ddb89ad90049c8f820facd86cb9ef6db7 Mon Sep 17 00:00:00 2001 From: Belen Curcio Date: Fri, 10 Aug 2018 12:11:32 -0300 Subject: [PATCH] Adding PoweredBy Component --- .../stream/components/PostCommentForm.tsx | 3 ++- .../client/stream/components/PoweredBy.css | 3 +++ .../client/stream/components/PoweredBy.tsx | 18 ++++++++++++++++++ .../components/UserBoxUnauthenticated.tsx | 2 +- 4 files changed, 24 insertions(+), 2 deletions(-) create mode 100644 src/core/client/stream/components/PoweredBy.css create mode 100644 src/core/client/stream/components/PoweredBy.tsx diff --git a/src/core/client/stream/components/PostCommentForm.tsx b/src/core/client/stream/components/PostCommentForm.tsx index 72bc0ad70..656ec54f8 100644 --- a/src/core/client/stream/components/PostCommentForm.tsx +++ b/src/core/client/stream/components/PostCommentForm.tsx @@ -2,7 +2,7 @@ import { Localized } from "fluent-react/compat"; import * as React from "react"; import { StatelessComponent } from "react"; import { Field, Form } from "react-final-form"; - +import PoweredBy from "./PoweredBy"; import { OnSubmit } from "talk-framework/lib/form"; import { required } from "talk-framework/lib/validation"; import { Button, Typography } from "talk-ui/components"; @@ -40,6 +40,7 @@ const PostCommentForm: StatelessComponent = props => ( )}
+