Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Change LeetCode Font | |
// @namespace http://yourwebsite.com | |
// @version 1.0 | |
// @description Change the font in LeetCode code editor to JetBrains Mono Nerd Font | |
// @match https://leetcode.com/* | |
// @grant none | |
// ==/UserScript== | |
(function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState } from 'react'; | |
const RegistrationForm = () => { | |
const [currentPage, setCurrentPage] = useState(1); | |
const [formData, setFormData] = useState({ | |
name: '', | |
email: '', | |
password: '', | |
// Add more form fields as needed | |
}); |