// @flow import React, { type Node } from 'react'; export default function Indent(props: { children: Node }) { return
{props.children}
; }