Fix App name prefilling, improve markdown layout
Summary: Make sure appname is prefilled Slightly improved layout of markdown Reviewed By: jknoxville Differential Revision: D18761477 fbshipit-source-id: 00184a0a4c6d1b5a779c3d3168f587e75e363433
This commit is contained in:
committed by
Facebook Github Bot
parent
02ce121332
commit
da14b6ac56
@@ -15,11 +15,11 @@ import {colors} from './colors';
|
||||
/**
|
||||
* Displays all children in a bordered, zebra styled vertical layout
|
||||
*/
|
||||
const AlternatingRows: React.FC<{children: React.ReactNode[]}> = ({
|
||||
children,
|
||||
}) => (
|
||||
const AlternatingRows: React.FC<{
|
||||
children: React.ReactNode[] | React.ReactNode;
|
||||
}> = ({children}) => (
|
||||
<Bordered style={{flexDirection: 'column'}}>
|
||||
{children.map((child, idx) => (
|
||||
{(Array.isArray(children) ? children : [children]).map((child, idx) => (
|
||||
<div
|
||||
key={idx}
|
||||
style={{
|
||||
|
||||
Reference in New Issue
Block a user