Style part profile editable state

This commit is contained in:
Kurt Hutten
2020-11-07 19:45:37 +11:00
parent 1bdc836b66
commit 0784cdbde2
15 changed files with 225 additions and 108 deletions

View File

@@ -0,0 +1,11 @@
import { render } from '@redwoodjs/testing'
import InputText from './InputText'
describe('InputText', () => {
it('renders successfully', () => {
expect(() => {
render(<InputText />)
}).not.toThrow()
})
})