Skip to content

Commit

Permalink
Kurt Cobain
Browse files Browse the repository at this point in the history
  • Loading branch information
irsyadadl committed Sep 7, 2024
1 parent 02b96a1 commit 08f3666
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 17 deletions.
4 changes: 1 addition & 3 deletions app/(app)/sink/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
export default function Page() {
return (
<div/>
)
return <div />
}
2 changes: 1 addition & 1 deletion components/docs/generated/previews.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// This file is autogenerated by scripts/create-pr-content.ts.
// Do not edit this file directly.

import React from 'react'
import React from 'react';

export const previews: Record<string, any> = {
"date-and-time/date-field-demo": {
Expand Down
34 changes: 21 additions & 13 deletions components/ui/field.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
'use client';

import * as React from 'react';



import { FieldError as FieldErrorPrimitive, type FieldErrorProps, Group, type GroupProps, Input as InputPrimitive, type InputProps, Label as LabelPrimitive, type LabelProps, Text, type TextFieldProps as TextFieldPrimitiveProps, type TextProps, type ValidationResult } from 'react-aria-components';
import { tv } from 'tailwind-variants';



import { cr, ctr } from './primitive';

"use client"

import * as React from "react"

import {
FieldError as FieldErrorPrimitive,
type FieldErrorProps,
Group,
type GroupProps,
Input as InputPrimitive,
type InputProps,
Label as LabelPrimitive,
type LabelProps,
Text,
type TextFieldProps as TextFieldPrimitiveProps,
type TextProps,
type ValidationResult
} from "react-aria-components"
import { tv } from "tailwind-variants"

import { cr, ctr } from "./primitive"

// primitive styles

Expand Down

0 comments on commit 08f3666

Please sign in to comment.