github.com/replicatedhq/ship@v0.55.0/web/init/src/components/shared/StepDone.jsx (about)

     1  import * as React from "react";
     2  
     3  const StepDone = () => (
     4    <div className="StepDone-wrapper u-textAlign--center flex1 flex-column justifyContent--center alignItems--center">
     5      <p className="u-fontWeight--bold u-color--tundora u-fontSize--jumbo u-marginBottom--20">You're all done!</p>
     6      <p className="u-fontSize--large">You have finished setting up your application. You can close this tab now and return to your terminal window.</p>
     7    </div>
     8  );
     9  
    10  export default StepDone;