We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1fa70e5 + 444fb6c commit 3eaaa25Copy full SHA for 3eaaa25
1 file changed
src/index.js
@@ -4,9 +4,19 @@ import PreRegister from './preregister';
4
import 'bootstrap/dist/css/bootstrap.css';
5
import './index.scss';
6
7
+const hiringMessage = `Hey, you.
8
+You’re finally awake.
9
+You were trying to see the code, right?
10
+Walked right into that hiring message, same as us.
11
+If you’d like to work on this website and other cool projects with hackathons, send an email over to engineering@coderit.org!`
12
+
13
+console.log(hiringMessage);
14
15
+//comment generated via javascript instead of in HTML so the hiring message text is only in one place
16
+const comment = document.createComment("\n"+hiringMessage.toString()+"\n");
17
+document.insertBefore(comment, document.firstChild);
18
19
ReactDOM.render(
20
<PreRegister/>,
21
document.getElementById('root'),
22
);
-
0 commit comments