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, useEffect } from 'react'; | |
const initialUsers = [ | |
{ id: 1, name: 'Alice', email: '[email protected]', status: 1, lastEdited: '2025-04-01' }, | |
{ id: 2, name: 'Bob', email: '[email protected]', status: 0, lastEdited: '2025-04-02' }, | |
{ id: 3, name: 'Charlie', email: '[email protected]', status: 1, lastEdited: '2025-04-03' }, | |
{ id: 4, name: 'David', email: '[email protected]', status: 0, lastEdited: '2025-04-01' }, | |
]; | |
const UserList = () => { |
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
^(((feature)|(bugfix))\/([A-Z]*-[0-9]+)|(hotfix\/)).* |
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
jSigHelper = (function() { | |
var chunkSeparator = '_' | |
, charmap = {} // {'1':'g','2':'h','3':'i','4':'j','5':'k','6':'l','7':'m','8':'n','9':'o','a':'p','b':'q','c':'r','d':'s','e':'t','f':'u','0':'v'} | |
, charmap_reverse = {} // will be filled by 'uncompress*" function | |
// need to split below for IE7 (possibly others), which does not understand string[position] it seems (returns undefined) | |
, allchars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWX'.split('') | |
, bitness = allchars.length / 2 | |
, minus = 'Z' | |
, plus = 'Y' | |