Merge pull request #4449 from matrix-org/dbkr/buttonplaceholder_classname

Fix CSS class in ButtonPlaceholder
pull/21833/head
David Baker 2020-04-20 14:39:20 +01:00 committed by GitHub
commit 30a3600874
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -15,5 +15,5 @@ limitations under the License.
*/
export default function ButtonPlaceholder(props) {
return <div class="mx_ButtonPlaceholder">{props.children}</div>;
return <div className="mx_ButtonPlaceholder">{props.children}</div>;
}