Added a title header to better indicate whether user is viewing public or private notes

This commit is contained in:
keannu125 2023-03-29 20:25:05 +08:00
parent 8be6d7b5de
commit aaa5f8b64b

View file

@ -32,6 +32,7 @@ export default function ViewToggle() {
/>
<p style={styles.text_small}>{switchLabel}</p>
</div>
<p style={styles.text_medium}>Public Notes</p>
<PublicNotes />
</div>
);
@ -59,6 +60,7 @@ export default function ViewToggle() {
/>
<p style={styles.text_small}>{switchLabel}</p>
</div>
<p style={styles.text_medium}>Private Notes</p>
<Notes />
</div>
);