* Copy the design-system app into a new one for ui-library. * Remove unneeded content. * Add supabase config. * Cleanup the css. * Add bunch of packages. * Cleanup the registry. * Regenerate the registry. * Add needed components for documenting components. * Add the pages for the components. * Fix the RegistryBlock. * Various fixes. * Add a turbo definition for ui-library. * Rename Remix to React Router. * Reorder the pages for all frameworks. * Remove the bottom pager. * Fix the pages and command menu. * Various fixes. * Minor fixes. * Add ai editor rules. * Various fixes. * Add local supabase env vars. * Try to fix a package error. * Bunch of various fixes. * Fix lint errors.
28 lines
471 B
TypeScript
28 lines
471 B
TypeScript
import * as React from 'react'
|
|
import { Component } from 'react'
|
|
|
|
/**
|
|
* Column properties.
|
|
*/
|
|
export interface IColumnProps {
|
|
/** prop1 description */
|
|
prop1?: string
|
|
/** prop2 description */
|
|
prop2: number
|
|
/**
|
|
* prop3 description
|
|
*/
|
|
prop3: () => void
|
|
/** prop4 description */
|
|
prop4: 'option1' | 'option2' | 'option3'
|
|
}
|
|
|
|
/**
|
|
* Form column.
|
|
*/
|
|
export class Column extends Component<IColumnProps, {}> {
|
|
render() {
|
|
return <div>Test</div>
|
|
}
|
|
}
|