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
^ array:2 [ | |
0 => array:3 [ | |
"id" => 105 | |
"tiktok_post_link" => "https://www.tiktok.com/@aintyoursb/video/7049680064471960858" | |
"response" => array:1 [ | |
0 => array:19 [ | |
"id" => "7049680064471960858" | |
"text" => "andalancuuuu😎😎 #brightiesjourney#brightyindonesia#pemutihketiak" | |
"createTime" => 1641381547 | |
"createTimeISO" => "2022-01-05T11:19:07.000Z" |
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
set_tab_title() { | |
echo -e "\033]${PWD##*/}\007" | |
} | |
precmd_functions=($precmd_functions set_tab_title) | |
autoload -U colors && colors | |
# autoload -Uz compinit | |
#if type brew &>/dev/null; then |
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, { Component } from 'react'; | |
class Curr extends Component { | |
state = { | |
successor: 0, | |
roundingType: '', | |
} | |
componentDidMount() { | |
const { value } = this.props; |
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 from 'react'; | |
import Responsive, { NotMatches, Matches } from '#src/common/Responsive'; | |
class Test extends React.Component { | |
render() { | |
return ( | |
<div className="p-4"> | |
<Responsive width="max-width: 768px"> | |
<h3>Header</h3> | |
<hr /> |
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
<CardList | |
selectable | |
selectedBy="id" | |
handleSelection={() => {}} | |
loading={this.state.loading} | |
className="p-3" | |
asRows={[ | |
{ | |
accessor: 'name', | |
header: 'Full Name', |