Style userProfile display and editable

This commit is contained in:
Kurt Hutten
2020-11-05 06:47:55 +11:00
parent 217cb31ed2
commit 249dbaba1a
17 changed files with 210 additions and 47 deletions

View File

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