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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Formulario Integrado 1.3.3</title> | |
<style> | |
body { | |
padding: 50px; | |
} |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Formulario Integrado 2.0</title> | |
<style> | |
body { | |
padding: 50px; | |
} |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Formulario Integrado 2.0</title> | |
<style> | |
body { | |
padding: 50px; | |
} |
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 Axios from 'axios'; | |
import { Dispatch, Reducer, useCallback, useReducer } from 'react'; | |
interface IAxiosData<T> { | |
data?: T; | |
loading: boolean; | |
error?: Error; | |
} | |
enum UseFatchActions { |
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
interface NodeItem { | |
cmd?: () => void; | |
pre?: NodeItem; | |
post?: NodeItem; | |
} | |
const root: NodeItem = { | |
cmd: () => console.log('just this'), | |
}; |
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
const operators = [ | |
["-", "*", "/"], | |
["-", "/", "*"], | |
["*", "-", "/"], | |
["*", "/", "-"], | |
["/", "-", "*"], | |
["/", "*", "-"], | |
]; | |
const operate = (n1, n2, operation) => { |
OlderNewer