public/js/util/wordLimits.js (12 lines of code) (raw):
import React from "react";
export const wordLimits = {
default: 400,
qanda: 250,
};
export const tooLongMsg = wordLimit => (
<div>
Heads up.{" "}
<strong>You've exceeded the {wordLimit} word limit for this field.</strong>{" "}
You can still publish it, but bear in mind that atoms should be concise.
</div>
);