10 lines
295 B
JavaScript
10 lines
295 B
JavaScript
import html from '../utils/html.js';
|
|
|
|
export const textStimuli = {
|
|
complete: html`Experiment complete. Please paste the following link into your browser to confirm completion on Prolific:
|
|
<span class="text-blue-500">
|
|
${import.meta.env.VITE_COMPLETE_URL}
|
|
</a>
|
|
`,
|
|
};
|