-
Ani Theme is an AngularJS Dashboard theme based on Bootstrap 3. It has subtle and smooth animation on widgets and page transitions. Checkout the demo and judge it yourself.
-
Bootstrap AngularJS theme
This file contains 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
<ListItem icon> | |
<Left> | |
<Button style={{ backgroundColor: '#FF9501' }}> | |
<Icon active name="plane" /> | |
</Button> | |
</Left> | |
<Body> | |
<Text>Airplane Mode</Text> | |
</Body> | |
<Right> |
This file contains 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 { createStore } from "redux"; | |
import { onSnapshot } from "mobx-state-tree"; | |
export default class ReduxDevTools { | |
static logger(state = {}, action: { state: any; type: string }) { | |
return action.state; | |
} | |
static init(state: any) { | |
const store: any = createStore( |
This file contains 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
{"lastUpload":"2020-05-20T12:34:47.434Z","extensionVersion":"v3.4.3"} |
This is a proposal for ReactiveConf 2017 open call for Lightning talks. If you'd like to make this talk happen, please 🌟 this gist and retweet my tweet. 🙏
✅ Don't just prototype but code as a designer
This file contains 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 { useState } from "react"; | |
const Babel = require("@babel/standalone"); | |
const Parser = require("@babel/parser"); | |
function isStyledFunctionCall(node) { | |
return ( | |
node.type === 'CallExpression' && | |
node.callee.type === 'Identifier' && |