mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 21:35:52 +00:00
30 lines
391 B
JavaScript
30 lines
391 B
JavaScript
export default {
|
|
id: 'copy-button',
|
|
initial: 'idle',
|
|
on: {
|
|
RESET: [
|
|
{
|
|
target: 'idle',
|
|
},
|
|
],
|
|
},
|
|
states: {
|
|
idle: {
|
|
on: {
|
|
SUCCESS: [
|
|
{
|
|
target: 'success',
|
|
},
|
|
],
|
|
ERROR: [
|
|
{
|
|
target: 'error',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
success: {},
|
|
error: {},
|
|
},
|
|
};
|