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 notifications [ | |
{ id: 1 } | |
]; // store.get("notifications") | |
const watchers = [ | |
{ notificationId: 1, userId: 1 } | |
{ notificationId: 1, userId: 2 } | |
{ notificationId: 2, userId: 2 } | |
]; // store.get("watchers") | |
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 Button from "./Button" | |
import FieldContainer from "./FieldContainer" | |
import InputField from "./InputField" | |
import NumberField from "./NumberField" | |
import React from "react" | |
import { connect } from "react-redux" | |
export class CreateClient extends FieldContainer { |
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
if ( ! function_exists( 'fcbkbttn_settings' ) ) { | |
function fcbkbttn_settings() { | |
global $fcbkbttn_options, $fcbkbttn_plugin_info, $fcbkbttn_options_default; | |
$fcbkbttn_options_default = array( | |
'plugin_option_version' => $fcbkbttn_plugin_info["Version"], | |
'link' => '', | |
'my_page' => 1, | |
'like' => 1, |