Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Design2-109] Create skeleton for TextField component #58494

Merged
merged 2 commits into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions apps/src/componentLibrary/textField/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Change Log

All notable changes to this project will be documented in this file.

## [0.0.1](https://github.com/code-dot-org/code-dot-org/pull/58494)

* Create skeleton for TextField component
13 changes: 13 additions & 0 deletions apps/src/componentLibrary/textField/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# `apps/src/componentLibrary/textField`

## Consuming This Component

This package exports one styled React component: [TextField](TextField.tsx). You can import it like this:

```javascript
import TextField from '@cdo/apps/componentLibrary/textField';
```

For guidelines on how to use these components and the features they offer, [visit Storybook](https://code-dot-org.github.io/dsco_)
(link to be updated once code-dot-org storybook will be public.).
Or run storybook locally and go to [Design System / TextField](http://localhost:9001/?path=/story/checkbox--default).
Loading