-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add tailwind folder as temporary storage for refactored compon…
…ents
- Loading branch information
1 parent
e5b40af
commit 4c28bee
Showing
6 changed files
with
29 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
**/* |
7 changes: 7 additions & 0 deletions
7
packages/orbit-components/src/tmp-tailwind/DummyTailwindComponent.tsx
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import React from "react"; | ||
|
||
const DummyTailwindComponent = () => { | ||
return <div className="text-red-dark">dummy</div>; | ||
}; | ||
|
||
export default DummyTailwindComponent; |
11 changes: 11 additions & 0 deletions
11
packages/orbit-components/src/tmp-tailwind/Tailwind.stories.tsx
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import React from "react"; | ||
|
||
import DummyTailwindComponent from "./DummyTailwindComponent"; | ||
|
||
export default { | ||
title: "Tailwind", | ||
}; | ||
|
||
export const DummyTailwindComponentStory = () => { | ||
return <DummyTailwindComponent />; | ||
}; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
"**/__tests__/**/*", | ||
"**/__typetests__/**/*", | ||
"**/*.stories.*", | ||
"**/tmp-tailwind/**", | ||
"**/RenderInRtl.tsx" | ||
] | ||
} |