chore(scaffolder): added simple create react app scaffolder

This commit is contained in:
blam
2020-07-16 06:23:42 +02:00
parent c4986e7922
commit adce138843
9 changed files with 138 additions and 4 deletions
@@ -126,7 +126,7 @@ export const JobStage = ({ endedAt, startedAt, name, log, status }: Props) => {
) : (
<Suspense fallback={<LinearProgress />}>
<div style={{ height: '20vh', width: '100%' }}>
<LazyLog text={log.join('\n')} extraLines={1} />
<LazyLog text={log.join('\n')} extraLines={1} follow />
</div>
</Suspense>
)}