Skip to content

Instantly share code, notes, and snippets.

@LucasSouzaa
LucasSouzaa / HTML
Created December 17, 2025 21:19
htmldateinput
<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="{
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 \
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(),
module.exports = {
extends: ['airbnb', 'prettier', 'prettier/react'],
parser: 'babel-eslint',
env: {
jest: true,
jasmine: true
},
plugins: ['detox', 'prettier', 'react-hooks'],
rules: {
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;