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
| <div class="fi-ta-col"> | |
| <div wire:ignore.self="" class="fi-ta-text-input" x-load="x-load" x-load-src="http://localhost:9000/js/filament/tables/components/columns/text-input.js?v=4.1.9.0" x-data="textInputTableColumn({ | |
| name: 'created_at', | |
| recordKey: '2', | |
| state: JSON.parse('\u00222025-12-16T17:42:21.000000Z\u0022'), | |
| })"> | |
| <input type="hidden" value="2025-12-16 17:42:21" x-ref="serverState"> | |
| <div x-bind:class="{ |
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
| FROM php:7.2-fpm | |
| WORKDIR /var/www | |
| ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/ | |
| RUN apt-get update && apt-get install -y \ | |
| build-essential \ | |
| mariadb-client \ | |
| libpng-dev \ |
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 { get } from "axios"; | |
| import { authCredentials } from "./auth-service"; | |
| const API_HOST = "https://fake-api.com"; | |
| const overdraftDetails = async username => { | |
| const headerInfo = { correlationId: "458639" }; | |
| return get(`${API_HOST}/users/${username}`, { | |
| ...authCredentials(), |
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
| module.exports = { | |
| extends: ['airbnb', 'prettier', 'prettier/react'], | |
| parser: 'babel-eslint', | |
| env: { | |
| jest: true, | |
| jasmine: true | |
| }, | |
| plugins: ['detox', 'prettier', 'react-hooks'], | |
| rules: { |
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 { TouchableOpacity } from "react-native"; | |
| import styles from "./styles"; | |
| import MidwayText from "./midway-text"; | |
| import { primary } from "./types/button-types"; | |
| const MidwayButton = props => { | |
| const { type, style, children } = props; | |
| const { textStyle, ...buttonStyle } = type || primary; |